From eb706a988e747b624fda0d44e0aaf6a4ee5e20eb Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Thu, 26 May 2022 11:27:03 +0800 Subject: [PATCH] fix saveOrder zkPrice is null --- zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjServices.java | 79 +++++++++++++++++++++++++++++++++++++-- 1 files changed, 75 insertions(+), 4 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjServices.java b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjServices.java index dd76b14..392b155 100644 --- a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjServices.java +++ b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjServices.java @@ -17,7 +17,7 @@ private static final long serialVersionUID = 1L; - + private String signPic; /** * 序号 @@ -43,6 +43,8 @@ /** * 订单划扣时间 */ + @JsonFormat(pattern = DateUtil.DATE_FORMAT_MM, timezone = "GMT+8") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") private Date consumeTime; /** @@ -62,15 +64,29 @@ * 床位 */ private Long bedId; - /** - * 床位 - */ + private Long companyId; /** * 主美疗师 */ private Long beauticianId; + + /** + * 员工编号(美容顾问) 下单人id + */ + private Long staffId; + /** + * 收银员姓名 + */ + @Extend + private String cashierName; + + + /** + * 收银员 + */ + private Long cashierId; /** * 仪器 @@ -251,6 +267,10 @@ private Integer totalTime; + /** + * 到时提醒次数 + */ + private Integer overtimeNotice; @@ -331,6 +351,49 @@ */ @Extend private String pageFlae; + + @Extend + private String queryKey; + + public String getQueryKey() { + return queryKey; + } + + public void setQueryKey(String queryKey) { + this.queryKey = queryKey; + } + + public Long getStaffId() { + return staffId; + } + + public void setStaffId(Long staffId) { + this.staffId = staffId; + } + + public String getCashierName() { + return cashierName; + } + + public void setCashierName(String cashierName) { + this.cashierName = cashierName; + } + + public Long getCashierId() { + return cashierId; + } + + public void setCashierId(Long cashierId) { + this.cashierId = cashierId; + } + + public Integer getOvertimeNotice() { + return overtimeNotice; + } + + public void setOvertimeNotice(Integer overtimeNotice) { + this.overtimeNotice = overtimeNotice; + } public String getPageFlae() { return pageFlae; @@ -732,4 +795,12 @@ public void setCompanyId(Long companyId) { this.companyId = companyId; } + + public String getSignPic() { + return signPic; + } + + public void setSignPic(String signPic) { + this.signPic = signPic; + } } -- Gitblit v1.9.1