wangrenhuang
2023-06-25 200f72a65bc07ad764450e08b8640f3ead9e6d97
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
package com.hz.his.dto.shop;
 
import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant;
import lombok.Data;
 
/**
 * 门店
 */
@Data
public class ShopVo {
 
    private String id;
    private String code;
 
    private String name;
 
    private String institutionalCode;
 
    private String departmentId;
 
    private Integer corpMpDepId;
 
    private Integer maxAppNum;
 
    private Integer maxSwitchNum;
 
    private Integer isUp;
 
    private String workTime;
 
    private String province;
 
    private String city;
 
    private String area;
 
    private String addr;
 
    private String colorStr;
 
    private String doctorRelaxTime;
 
    private String carWay;
 
    private String subWay;
 
    private String apiId;
    private Integer shengMeiNum;
    private Integer sameTimeCustomerNum;
 
    private String clinicCode;
    private String clinicName;
 
    private Integer isPerformanceShop;
 
    public ShopVo() {
    }
 
}