From 18d8f7f48ba6827bff1e16e81b9ffa3346cff98c Mon Sep 17 00:00:00 2001 From: ANDRU-PC\Andru <769883346@qq.com> Date: 星期一, 26 十二月 2022 11:17:23 +0800 Subject: [PATCH] 添加dto字段 --- phis-feign/src/main/java/com/hz/phis/dt/shop/ShopDt.java | 201 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 201 insertions(+), 0 deletions(-) diff --git a/phis-feign/src/main/java/com/hz/phis/dt/shop/ShopDt.java b/phis-feign/src/main/java/com/hz/phis/dt/shop/ShopDt.java new file mode 100644 index 0000000..eb07259 --- /dev/null +++ b/phis-feign/src/main/java/com/hz/phis/dt/shop/ShopDt.java @@ -0,0 +1,201 @@ +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绯荤粺鐨刬d*/ + 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; + } +} -- Gitblit v1.8.0