fwq
2024-04-23 bdd39fac56c367b36d6c41ef2cd5c9f35926013f
提交 | 用户 | age
3ce49a 1 package com.hz.phis.dt.shop;
F 2
3 import com.hz.phis.dt.BaseDt;
4
5 /**
6  * 同步门店列表实体
7  *
8  * @author fwq
9  */
10 public class ShopDt extends BaseDt {
11     /**编号*/
12     private String code;
13     /**名称*/
14     private String name;
15     /**所属父级部门标识(Department)*/
16     private String departmentId;
17     /**企业微信部门id*/
18     private Integer corpMpDepId;
19     /**最大预约数量*/
20     private Integer maxAppNum;
21     /**最大转疗数量*/
22     private Integer maxSwitchNum;
23     /**是否启用*/
24     private Integer isUp;
25     /**工作时间如09:00-12:00|14:00-16:00*/
26     private String workTime;
27     /**地址-省*/
28     private String province;
29     /**地址-市*/
30     private String city;
31     /**地址-区*/
32     private String area;
33     /**地址详细*/
34     private String addr;
35     /**颜色字符串*/
36     private String colorStr;
37     /**医生休息时间*/
38     private String doctorRelaxTime;
39     /**驾车路线*/
40     private String carWay;
41     /**地铁路径*/
42     private String subWay;
43     /**api系统的id*/
44     private String apiId;
45     /**生美预约限制数量*/
46     private Integer shengMeiNum;
47     /**同一时间段客户数*/
48     private Integer sameTimeCustomerNum;
49
50     public String getCode() {
51         return code;
52     }
53
54     public void setCode(String code) {
55         this.code = code;
56     }
57
58     public String getName() {
59         return name;
60     }
61
62     public void setName(String name) {
63         this.name = name;
64     }
65
66     public String getDepartmentId() {
67         return departmentId;
68     }
69
70     public void setDepartmentId(String departmentId) {
71         this.departmentId = departmentId;
72     }
73
74     public Integer getCorpMpDepId() {
75         return corpMpDepId;
76     }
77
78     public void setCorpMpDepId(Integer corpMpDepId) {
79         this.corpMpDepId = corpMpDepId;
80     }
81
82     public Integer getMaxAppNum() {
83         return maxAppNum;
84     }
85
86     public void setMaxAppNum(Integer maxAppNum) {
87         this.maxAppNum = maxAppNum;
88     }
89
90     public Integer getMaxSwitchNum() {
91         return maxSwitchNum;
92     }
93
94     public void setMaxSwitchNum(Integer maxSwitchNum) {
95         this.maxSwitchNum = maxSwitchNum;
96     }
97
98     public Integer getIsUp() {
99         return isUp;
100     }
101
102     public void setIsUp(Integer isUp) {
103         this.isUp = isUp;
104     }
105
106     public String getWorkTime() {
107         return workTime;
108     }
109
110     public void setWorkTime(String workTime) {
111         this.workTime = workTime;
112     }
113
114     public String getProvince() {
115         return province;
116     }
117
118     public void setProvince(String province) {
119         this.province = province;
120     }
121
122     public String getCity() {
123         return city;
124     }
125
126     public void setCity(String city) {
127         this.city = city;
128     }
129
130     public String getArea() {
131         return area;
132     }
133
134     public void setArea(String area) {
135         this.area = area;
136     }
137
138     public String getAddr() {
139         return addr;
140     }
141
142     public void setAddr(String addr) {
143         this.addr = addr;
144     }
145
146     public String getColorStr() {
147         return colorStr;
148     }
149
150     public void setColorStr(String colorStr) {
151         this.colorStr = colorStr;
152     }
153
154     public String getDoctorRelaxTime() {
155         return doctorRelaxTime;
156     }
157
158     public void setDoctorRelaxTime(String doctorRelaxTime) {
159         this.doctorRelaxTime = doctorRelaxTime;
160     }
161
162     public String getCarWay() {
163         return carWay;
164     }
165
166     public void setCarWay(String carWay) {
167         this.carWay = carWay;
168     }
169
170     public String getSubWay() {
171         return subWay;
172     }
173
174     public void setSubWay(String subWay) {
175         this.subWay = subWay;
176     }
177
178     public String getApiId() {
179         return apiId;
180     }
181
182     public void setApiId(String apiId) {
183         this.apiId = apiId;
184     }
185
186     public Integer getShengMeiNum() {
187         return shengMeiNum;
188     }
189
190     public void setShengMeiNum(Integer shengMeiNum) {
191         this.shengMeiNum = shengMeiNum;
192     }
193
194     public Integer getSameTimeCustomerNum() {
195         return sameTimeCustomerNum;
196     }
197
198     public void setSameTimeCustomerNum(Integer sameTimeCustomerNum) {
199         this.sameTimeCustomerNum = sameTimeCustomerNum;
200     }
201 }