|
|
@@ -9,7 +9,7 @@ import lombok.Data;
|
|
|
/**
|
|
|
* Domain의 기본 Super class
|
|
|
* Domain 클래스 생성 시 이 클래스를 상속받아서 처리한다.
|
|
|
- *
|
|
|
+ *
|
|
|
* @author gagamel
|
|
|
* @since 2020. 10. 5
|
|
|
*/
|
|
|
@@ -20,12 +20,18 @@ public class TsaBaseDomain implements Serializable {
|
|
|
@JsonInclude(JsonInclude.Include.NON_EMPTY)
|
|
|
private Integer regNo;
|
|
|
|
|
|
+ @JsonInclude(JsonInclude.Include.NON_EMPTY)
|
|
|
+ private String regNm;
|
|
|
+
|
|
|
@JsonInclude(JsonInclude.Include.NON_EMPTY)
|
|
|
private String regDt;
|
|
|
|
|
|
@JsonInclude(JsonInclude.Include.NON_EMPTY)
|
|
|
private Integer updNo;
|
|
|
|
|
|
+ @JsonInclude(JsonInclude.Include.NON_EMPTY)
|
|
|
+ private String updNm;
|
|
|
+
|
|
|
@JsonInclude(JsonInclude.Include.NON_EMPTY)
|
|
|
private String updDt;
|
|
|
|