JsonFormat

This commit is contained in:
2025-11-18 14:15:52 +09:00
parent af4fe2b2ed
commit a63b4c33f3
6 changed files with 47 additions and 27 deletions

View File

@@ -80,6 +80,10 @@ public class CommonCodeEntity extends CommonDateEntity {
this.deleted,
this.parent,
super.getCreatedDate(),
super.getModifiedDate());
super.getModifiedDate());
}
public void addParent(CommonCodeEntity parent) {
this.parent = parent;
}
}