견적서 API 작성자 아이디 추가

This commit is contained in:
LAPTOP-L3VE7KK2\USER 2024-12-12 10:05:38 +09:00
parent e5f7e728b0
commit d1d9096b23
4 changed files with 12 additions and 0 deletions

View File

@ -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;

View File

@ -103,6 +103,9 @@ public class ObjectResponse {
@Schema(description = "생성일")
private String createDatetime;
@Schema(description = "생성자 아이디")
private String createUser;
@Schema(description = "생성자")
private String createUserName;

View File

@ -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

View File

@ -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