Commit 5c658ba8972703740591f78ef11181f41dd34dd5
1 parent
f86cfc6496
Exists in
master
and in
8 other branches
增加权限
Showing 1 changed file with 9 additions and 39 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyVisitAddRequest.java
View file @
5c658ba
| ... | ... | @@ -3,10 +3,12 @@ |
| 3 | 3 | import com.lyms.platform.common.base.IBasicRequestConvert; |
| 4 | 4 | import com.lyms.platform.common.core.annotation.form.Form; |
| 5 | 5 | import com.lyms.platform.common.utils.DateUtil; |
| 6 | +import com.lyms.platform.common.utils.JsonUtil; | |
| 6 | 7 | import com.lyms.platform.pojo.BabyVisitModel; |
| 7 | 8 | import com.lyms.platform.pojo.Patients; |
| 8 | 9 | |
| 9 | -import java.util.Date; | |
| 10 | +import java.util.List; | |
| 11 | +import java.util.Map; | |
| 10 | 12 | |
| 11 | 13 | @Form |
| 12 | 14 | public class BabyVisitAddRequest implements IBasicRequestConvert<BabyVisitModel> { |
| 13 | 15 | |
| 14 | 16 | |
| 15 | 17 | |
| ... | ... | @@ -24,30 +26,22 @@ |
| 24 | 26 | |
| 25 | 27 | private String phone; |
| 26 | 28 | |
| 27 | - public String getPhone() { | |
| 28 | - return phone; | |
| 29 | - public String getAreaId() { | |
| 30 | - return areaId; | |
| 31 | - } | |
| 32 | - | |
| 33 | - public void setPhone(String phone) { | |
| 34 | - this.phone = phone; | |
| 35 | 29 | public void setAreaId(String areaId) { |
| 36 | 30 | this.areaId = areaId; |
| 37 | 31 | } |
| 38 | 32 | |
| 39 | - public String getCityId() { | |
| 40 | - return cityId; | |
| 41 | - } | |
| 42 | - | |
| 43 | 33 | public void setCityId(String cityId) { |
| 44 | 34 | this.cityId = cityId; |
| 45 | 35 | } |
| 46 | 36 | |
| 47 | - public String getProvinceId() { | |
| 48 | - return provinceId; | |
| 37 | + public String getPhone() { | |
| 38 | + return phone; | |
| 49 | 39 | } |
| 50 | 40 | |
| 41 | + public void setPhone(String phone) { | |
| 42 | + this.phone = phone; | |
| 43 | + } | |
| 44 | + | |
| 51 | 45 | public void setProvinceId(String provinceId) { |
| 52 | 46 | this.provinceId = provinceId; |
| 53 | 47 | } |
| ... | ... | @@ -215,30 +209,6 @@ |
| 215 | 209 | |
| 216 | 210 | public void setAddress(String address) { |
| 217 | 211 | this.address = address; |
| 218 | - } | |
| 219 | - | |
| 220 | - public int getAreaId() { | |
| 221 | - return areaId; | |
| 222 | - } | |
| 223 | - | |
| 224 | - public void setAreaId(int areaId) { | |
| 225 | - this.areaId = areaId; | |
| 226 | - } | |
| 227 | - | |
| 228 | - public int getCityId() { | |
| 229 | - return cityId; | |
| 230 | - } | |
| 231 | - | |
| 232 | - public void setCityId(int cityId) { | |
| 233 | - this.cityId = cityId; | |
| 234 | - } | |
| 235 | - | |
| 236 | - public int getProvinceId() { | |
| 237 | - return provinceId; | |
| 238 | - } | |
| 239 | - | |
| 240 | - public void setProvinceId(int provinceId) { | |
| 241 | - this.provinceId = provinceId; | |
| 242 | 212 | } |
| 243 | 213 | |
| 244 | 214 |