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() {
|
}
|
|
}
|