提交 | 用户 | age
|
200f72
|
1 |
package com.hz.his.dto.shop; |
W |
2 |
|
|
3 |
import com.gitee.sunchenbin.mybatis.actable.annotation.Column; |
|
4 |
import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant; |
|
5 |
import lombok.Data; |
|
6 |
|
|
7 |
/** |
|
8 |
* 门店 |
|
9 |
*/ |
|
10 |
@Data |
|
11 |
public class ShopVo { |
|
12 |
|
|
13 |
private String id; |
|
14 |
private String code; |
|
15 |
|
|
16 |
private String name; |
|
17 |
|
|
18 |
private String institutionalCode; |
|
19 |
|
|
20 |
private String departmentId; |
|
21 |
|
|
22 |
private Integer corpMpDepId; |
|
23 |
|
|
24 |
private Integer maxAppNum; |
|
25 |
|
|
26 |
private Integer maxSwitchNum; |
|
27 |
|
|
28 |
private Integer isUp; |
|
29 |
|
|
30 |
private String workTime; |
|
31 |
|
|
32 |
private String province; |
|
33 |
|
|
34 |
private String city; |
|
35 |
|
|
36 |
private String area; |
|
37 |
|
|
38 |
private String addr; |
|
39 |
|
|
40 |
private String colorStr; |
|
41 |
|
|
42 |
private String doctorRelaxTime; |
|
43 |
|
|
44 |
private String carWay; |
|
45 |
|
|
46 |
private String subWay; |
|
47 |
|
|
48 |
private String apiId; |
|
49 |
private Integer shengMeiNum; |
|
50 |
private Integer sameTimeCustomerNum; |
|
51 |
|
|
52 |
private String clinicCode; |
|
53 |
private String clinicName; |
|
54 |
|
|
55 |
private Integer isPerformanceShop; |
|
56 |
|
|
57 |
public ShopVo() { |
|
58 |
} |
|
59 |
|
|
60 |
} |