2 Commits

Author SHA1 Message Date
Rinjae ebdeab8204 활성 프로파일 뱃지 추가 - HTTP 세션 로그 설정 제거 - 개인정보 암호화 처리
eapim-portal CI (from elink-portal-common) / build (push) Has been cancelled
2026-08-21 17:25:41 +09:00
Rinjae 99dac967bc PortalPropertyService: PropertyValue null 필터 추가 2026-08-21 11:06:11 +09:00
2 changed files with 5 additions and 0 deletions
@@ -30,6 +30,7 @@ public class PortalPropertyService extends AbstractDataService<PortalPropertyGro
.orElse(new PortalPropertyGroup());
return portalPropertyGroup.getPortalProperties().stream()
.filter(portalProperty -> portalProperty.getPropertyValue() != null)
.collect(Collectors.toMap(
portalProperty -> portalProperty.getId().getPropertyName(),
PortalProperty::getPropertyValue,
@@ -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;