fwq
2024-05-01 623afb6fbb8ce6adebf237e7b670d9f4f339184d
提交 | 用户 | age
0937f1 1 package com.hz.his.dto.order;
W 2
3 import java.util.Date;
4
5 /**
6  * 订单与开发人关联表(默认:用户绑定的所属顾问)
7  */
8 public class OrderDeveloperDto {
9
10     private String id;
11     private Date createTime;
12     private Date editTime;
13
14     /** 订单id(OrdersTotal) */
15     private String orderId;
16
17     /** 开单人门店标识(默认:用户绑定的所属顾问) */
18     private String shopId;
19     /** 开单人门店名称(默认:用户绑定的所属顾问)*/
20     private String shopName;
21
22     /** 开单人员工标识(默认:用户绑定的所属顾问)*/
23     private String employeeId;
24      /** 开单人员工名称(默认:用户绑定的所属顾问)*/
25     private String employeeName;
26
27      /** 类型(美容师/医生)*/
28     private String type;
29
30     public String getOrderId() {
31         return orderId;
32     }
33
34     public void setOrderId(String orderId) {
35         this.orderId = orderId;
36     }
37
38     public String getShopId() {
39         return shopId;
40     }
41
42     public void setShopId(String shopId) {
43         this.shopId = shopId;
44     }
45
46     public String getShopName() {
47         return shopName;
48     }
49
50     public void setShopName(String shopName) {
51         this.shopName = shopName;
52     }
53
54     public String getEmployeeId() {
55         return employeeId;
56     }
57
58     public void setEmployeeId(String employeeId) {
59         this.employeeId = employeeId;
60     }
61
62     public String getEmployeeName() {
63         return employeeName;
64     }
65
66     public void setEmployeeName(String employeeName) {
67         this.employeeName = employeeName;
68     }
69
70     public String getType() {
71         return type;
72     }
73
74     public void setType(String type) {
75         this.type = type;
76     }
77
78     public String getId() {
79         return id;
80     }
81
82     public void setId(String id) {
83         this.id = id;
84     }
85
86     public Date getCreateTime() {
87         return createTime;
88     }
89
90     public void setCreateTime(Date createTime) {
91         this.createTime = createTime;
92     }
93
94     public Date getEditTime() {
95         return editTime;
96     }
97
98     public void setEditTime(Date editTime) {
99         this.editTime = editTime;
100     }
101 }