Merge branch 'dev' of https://git.jetbrains.space/nalpari/q-cast-iii/qcast-api into dev
This commit is contained in:
commit
6baddf83c3
@ -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;
|
||||
|
||||
@ -103,6 +103,9 @@ public class ObjectResponse {
|
||||
@Schema(description = "생성일")
|
||||
private String createDatetime;
|
||||
|
||||
@Schema(description = "생성자 아이디")
|
||||
private String createUser;
|
||||
|
||||
@Schema(description = "생성자")
|
||||
private String createUserName;
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user