From 3b3f13a66fe018b1f0abe16db8d194b1927907aa Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 05 May 2022 10:26:55 +0800 Subject: [PATCH] 20220505 --- zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjServices.java | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 50 insertions(+), 0 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 628ca52..59cc0f2 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 @@ -73,6 +73,22 @@ private Long beauticianId; /** + * 员工编号(美容顾问) 下单人id + */ + private Long staffId; + /** + * 收银员姓名 + */ + @Extend + private String cashierName; + + + /** + * 收银员 + */ + private Long cashierId; + + /** * 仪器 */ private Long deviceId; @@ -336,6 +352,40 @@ @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; -- Gitblit v1.9.1