Commit 4b1f462fb2fdfe5d78cfd915c598f8607e423e88
Exists in
master
and in
6 other branches
Merge remote-tracking branch 'origin/master'
Showing 1 changed file
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntexListResult.java
View file @
4b1f462
... | ... | @@ -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() { |