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