Commit 9c9c7b3d611740c84f96d307011cf6450142a752
1 parent
a247c6cf1e
Exists in
master
and in
6 other branches
全部孕妇管理增加按照排序
Showing 1 changed file with 35 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntexListResult.java
View file @
9c9c7b3
| ... | ... | @@ -262,8 +262,43 @@ |
| 262 | 262 | if (null != patients.getLastMenses()) { |
| 263 | 263 | setLastMenses(DateUtil.getyyyy_MM_dd(patients.getLastMenses())); |
| 264 | 264 | } |
| 265 | + setMensEndDay(patients.getMensEndDay()); | |
| 266 | + setMensStartDay(patients.getMensStartDay()); | |
| 267 | + setFuckLastMens(DateUtil.getyyyy_MM_dd(patients.getFuckLastMens())); | |
| 265 | 268 | } |
| 266 | 269 | return this; |
| 270 | + } | |
| 271 | + | |
| 272 | + /** | |
| 273 | + * 月经周期 | |
| 274 | + */ | |
| 275 | + private String mensStartDay; | |
| 276 | + private String mensEndDay; | |
| 277 | + | |
| 278 | + private String fuckLastMens; | |
| 279 | + | |
| 280 | + public String getFuckLastMens() { | |
| 281 | + return fuckLastMens; | |
| 282 | + } | |
| 283 | + | |
| 284 | + public void setFuckLastMens(String fuckLastMens) { | |
| 285 | + this.fuckLastMens = fuckLastMens; | |
| 286 | + } | |
| 287 | + | |
| 288 | + public String getMensStartDay() { | |
| 289 | + return mensStartDay; | |
| 290 | + } | |
| 291 | + | |
| 292 | + public void setMensStartDay(String mensStartDay) { | |
| 293 | + this.mensStartDay = mensStartDay; | |
| 294 | + } | |
| 295 | + | |
| 296 | + public String getMensEndDay() { | |
| 297 | + return mensEndDay; | |
| 298 | + } | |
| 299 | + | |
| 300 | + public void setMensEndDay(String mensEndDay) { | |
| 301 | + this.mensEndDay = mensEndDay; | |
| 267 | 302 | } |
| 268 | 303 | |
| 269 | 304 | public List getData() { |