package com.hz.phis.dt.shop;
|
|
import com.hz.phis.dt.BaseDt;
|
|
/**
|
* 同步门店列表实体
|
*
|
* @author fwq
|
*/
|
public class ShopDt extends BaseDt {
|
/**编号*/
|
private String code;
|
/**名称*/
|
private String name;
|
/**所属父级部门标识(Department)*/
|
private String departmentId;
|
/**企业微信部门id*/
|
private Integer corpMpDepId;
|
/**最大预约数量*/
|
private Integer maxAppNum;
|
/**最大转疗数量*/
|
private Integer maxSwitchNum;
|
/**是否启用*/
|
private Integer isUp;
|
/**工作时间如09:00-12:00|14:00-16:00*/
|
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;
|
/**api系统的id*/
|
private String apiId;
|
/**生美预约限制数量*/
|
private Integer shengMeiNum;
|
/**同一时间段客户数*/
|
private Integer sameTimeCustomerNum;
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getDepartmentId() {
|
return departmentId;
|
}
|
|
public void setDepartmentId(String departmentId) {
|
this.departmentId = departmentId;
|
}
|
|
public Integer getCorpMpDepId() {
|
return corpMpDepId;
|
}
|
|
public void setCorpMpDepId(Integer corpMpDepId) {
|
this.corpMpDepId = corpMpDepId;
|
}
|
|
public Integer getMaxAppNum() {
|
return maxAppNum;
|
}
|
|
public void setMaxAppNum(Integer maxAppNum) {
|
this.maxAppNum = maxAppNum;
|
}
|
|
public Integer getMaxSwitchNum() {
|
return maxSwitchNum;
|
}
|
|
public void setMaxSwitchNum(Integer maxSwitchNum) {
|
this.maxSwitchNum = maxSwitchNum;
|
}
|
|
public Integer getIsUp() {
|
return isUp;
|
}
|
|
public void setIsUp(Integer isUp) {
|
this.isUp = isUp;
|
}
|
|
public String getWorkTime() {
|
return workTime;
|
}
|
|
public void setWorkTime(String workTime) {
|
this.workTime = workTime;
|
}
|
|
public String getProvince() {
|
return province;
|
}
|
|
public void setProvince(String province) {
|
this.province = province;
|
}
|
|
public String getCity() {
|
return city;
|
}
|
|
public void setCity(String city) {
|
this.city = city;
|
}
|
|
public String getArea() {
|
return area;
|
}
|
|
public void setArea(String area) {
|
this.area = area;
|
}
|
|
public String getAddr() {
|
return addr;
|
}
|
|
public void setAddr(String addr) {
|
this.addr = addr;
|
}
|
|
public String getColorStr() {
|
return colorStr;
|
}
|
|
public void setColorStr(String colorStr) {
|
this.colorStr = colorStr;
|
}
|
|
public String getDoctorRelaxTime() {
|
return doctorRelaxTime;
|
}
|
|
public void setDoctorRelaxTime(String doctorRelaxTime) {
|
this.doctorRelaxTime = doctorRelaxTime;
|
}
|
|
public String getCarWay() {
|
return carWay;
|
}
|
|
public void setCarWay(String carWay) {
|
this.carWay = carWay;
|
}
|
|
public String getSubWay() {
|
return subWay;
|
}
|
|
public void setSubWay(String subWay) {
|
this.subWay = subWay;
|
}
|
|
public String getApiId() {
|
return apiId;
|
}
|
|
public void setApiId(String apiId) {
|
this.apiId = apiId;
|
}
|
|
public Integer getShengMeiNum() {
|
return shengMeiNum;
|
}
|
|
public void setShengMeiNum(Integer shengMeiNum) {
|
this.shengMeiNum = shengMeiNum;
|
}
|
|
public Integer getSameTimeCustomerNum() {
|
return sameTimeCustomerNum;
|
}
|
|
public void setSameTimeCustomerNum(Integer sameTimeCustomerNum) {
|
this.sameTimeCustomerNum = sameTimeCustomerNum;
|
}
|
}
|