예상완료일 추가

This commit is contained in:
eastargh
2026-06-05 15:10:45 +09:00
parent 264bb8f729
commit 38d100543b
2 changed files with 7 additions and 0 deletions
@@ -75,4 +75,7 @@ public class Approval implements Serializable, com.eactive.eai.data.Data {
@Column(length = 17, name = "end_date")
@Convert(converter = LocalDateTimeToStringConverter17.class)
private LocalDateTime approvalDate;
@Column(name = "expect_end_date")
private String expectEndDate; //예상완료일
}
@@ -28,4 +28,8 @@ public interface ApprovalState extends Serializable {
}
String getDescription();
default String getCode() {
return toString();
}
}