diff --git a/src/main/java/com/interplug/qcast/biz/estimate/dto/EstimateResponse.java b/src/main/java/com/interplug/qcast/biz/estimate/dto/EstimateResponse.java index 9fd895dc..96232114 100644 --- a/src/main/java/com/interplug/qcast/biz/estimate/dto/EstimateResponse.java +++ b/src/main/java/com/interplug/qcast/biz/estimate/dto/EstimateResponse.java @@ -149,6 +149,12 @@ public class EstimateResponse { @Schema(description = "갱신일") private String lastEditDatetime; + @Schema(description = "생성일") + private String createDatetime; + + @Schema(description = "생성자 아이디") + private String createUser; + // 가격 관련 정보 @Schema(description = "총 수량") private String totAmount; diff --git a/src/main/java/com/interplug/qcast/biz/object/dto/ObjectResponse.java b/src/main/java/com/interplug/qcast/biz/object/dto/ObjectResponse.java index a786e460..4973309d 100644 --- a/src/main/java/com/interplug/qcast/biz/object/dto/ObjectResponse.java +++ b/src/main/java/com/interplug/qcast/biz/object/dto/ObjectResponse.java @@ -103,6 +103,9 @@ public class ObjectResponse { @Schema(description = "생성일") private String createDatetime; + @Schema(description = "생성자 아이디") + private String createUser; + @Schema(description = "생성자") private String createUserName; diff --git a/src/main/resources/mappers/estimate/estimateMapper.xml b/src/main/resources/mappers/estimate/estimateMapper.xml index b8e1d1f3..a55d5321 100644 --- a/src/main/resources/mappers/estimate/estimateMapper.xml +++ b/src/main/resources/mappers/estimate/estimateMapper.xml @@ -50,6 +50,8 @@ , P.PRICE_CD , P.REMARKS , P.LAST_EDIT_DATETIME + , P.CREATE_DATETIME + , P.CREATE_USER , O.OBJECT_NAME , O.OBJECT_NAME_OMIT , O.REMARKS AS OBJECT_REMARKS diff --git a/src/main/resources/mappers/object/objectMapper.xml b/src/main/resources/mappers/object/objectMapper.xml index 910380de..bf50ea8e 100644 --- a/src/main/resources/mappers/object/objectMapper.xml +++ b/src/main/resources/mappers/object/objectMapper.xml @@ -302,6 +302,7 @@ , O.SALT_AREA_FLG , ISNULL(O.TEMP_FLG, '0') AS TEMP_FLG , O.CREATE_DATETIME + , O.CREATE_USER , O.LAST_EDIT_DATETIME , (SELECT NAME FROM M_USER WHERE USER_ID = O.CREATE_USER) AS CREATE_USER_NAME , (SELECT NAME FROM M_USER WHERE USER_ID = O.LAST_EDIT_USER) AS LAST_EDIT_USER_NAME