공통코드 삭제 API 커밋, 삭제일시 컬럼 추가, 에러로그에 userId 토큰으로 로직 변경
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user