Done ticket GEPAFINBE-87

This commit is contained in:
rajesh
2025-06-03 16:57:48 +05:30
parent 670546b4e6
commit ba261783b5
51 changed files with 249 additions and 88 deletions

View File

@@ -21,8 +21,13 @@ public class BaseEntity {
@Column(name = "UPDATED_DATE")
LocalDateTime updatedDate;
@PrePersist
@Column(name="IS_DELETED")
private Boolean isDeleted = false;
@PrePersist
public void setCreatedDate() {
this.createdDate = DateTimeUtil.DateServerToUTC(LocalDateTime.now());
this.updatedDate = DateTimeUtil.DateServerToUTC(LocalDateTime.now());