공통코드 삭제 API 커밋, 삭제일시 컬럼 추가, 에러로그에 userId 토큰으로 로직 변경

This commit is contained in:
2025-12-05 12:07:03 +09:00
parent 88cdfa7ce7
commit eeef8c8d32
8 changed files with 130 additions and 23 deletions

View File

@@ -90,6 +90,9 @@ public class CommonCodeDto {
private String props2;
private String props3;
@JsonFormatDttm
private ZonedDateTime deletedDttm;
public Basic(
Long id,
String code,
@@ -103,7 +106,9 @@ public class CommonCodeDto {
ZonedDateTime updatedDttm,
String props1,
String props2,
String props3) {
String props3,
ZonedDateTime deletedDttm
) {
this.id = id;
this.code = code;
this.description = description;
@@ -117,6 +122,7 @@ public class CommonCodeDto {
this.props1 = props1;
this.props2 = props2;
this.props3 = props3;
this.deletedDttm = deletedDttm;
}
}
}