Commit 0b983c35f771d864e12f1de1088125e691f8b7e9
1 parent
0a2faa09d8
Exists in
master
and in
1 other branch
add code
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
View file @
0b983c3
... | ... | @@ -236,7 +236,7 @@ |
236 | 236 | |
237 | 237 | patient.setServiceStatus(yunRequest.getServiceStatus()); |
238 | 238 | patient.setVipEndTime(DateUtil.parseYMD(yunRequest.getVipEndTime())); |
239 | - patient.setExpVip(yunRequest.isExpVip()); | |
239 | + patient.setExpVip(yunRequest.getExpVip()); | |
240 | 240 | patient.setMremark(yunRequest.getMremark()); |
241 | 241 | |
242 | 242 | patient.setLastMenses(DateUtil.parseYMD(yunRequest.getLastMenstrualPeriod())); |
... | ... | @@ -322,7 +322,7 @@ |
322 | 322 | |
323 | 323 | result.setServiceStatus(p.getServiceStatus()); |
324 | 324 | result.setVipEndTime(DateUtil.getyyyy_MM_dd(p.getVipEndTime())); |
325 | - result.setExpVip(p.isExpVip()); | |
325 | + result.setExpVip(p.getExpVip()); | |
326 | 326 | result.setMremark(p.getMremark()); |
327 | 327 | |
328 | 328 |