diff --git a/src/main/java/com/eactive/apim/portal/portaluser/entity/UserRoleHistory.java b/src/main/java/com/eactive/apim/portal/portaluser/entity/UserRoleHistory.java index 0b6fbb1..166376f 100644 --- a/src/main/java/com/eactive/apim/portal/portaluser/entity/UserRoleHistory.java +++ b/src/main/java/com/eactive/apim/portal/portaluser/entity/UserRoleHistory.java @@ -1,5 +1,6 @@ package com.eactive.apim.portal.portaluser.entity; +import com.eactive.apim.portal.jpa.PersonalDataEncryptConverter; import com.eactive.eai.data.converter.LocalDateTimeToStringConverter14; import lombok.Data; import org.hibernate.annotations.Comment; @@ -40,6 +41,7 @@ public class UserRoleHistory implements Serializable, com.eactive.eai.data.Data @Column(name = "id", columnDefinition = "number(19)") private Long id; + @Convert(converter = PersonalDataEncryptConverter.class) @Column(name = "user_id", length = 255, nullable = false) @Comment("대상 사용자 ID(loginId)") private String userId; @@ -56,6 +58,7 @@ public class UserRoleHistory implements Serializable, com.eactive.eai.data.Data @Comment("변경 유형(MANAGER_ASSIGN/MANAGER_REVOKE/ORG_REMOVE 등)") private String changeType; + @Convert(converter = PersonalDataEncryptConverter.class) @Column(name = "changed_by", length = 255, nullable = false) @Comment("변경 수행자(loginId)") private String changedBy; @@ -65,6 +68,7 @@ public class UserRoleHistory implements Serializable, com.eactive.eai.data.Data @Convert(converter = LocalDateTimeToStringConverter14.class) private LocalDateTime changeDate; + @Convert(converter = PersonalDataEncryptConverter.class) @Column(name = "created_by", length = 255, nullable = false) @Comment("생성자") private String createdBy;