Commit 395c0a94e6a130cfac58c867930cd9c1f41e1e42
1 parent
01f4fb71fe
Exists in
master
and in
6 other branches
update
Showing 2 changed files with 21 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
View file @
395c0a9
... | ... | @@ -2008,6 +2008,8 @@ |
2008 | 2008 | FilePathModel filePath = yunBookbuildingService.findFilePath(p.getId()); |
2009 | 2009 | |
2010 | 2010 | result = getResult(p); |
2011 | + result.setNextCheckTime(DateUtil.getyyyy_MM_dd(p.getNextCheckTime())); | |
2012 | + result.setcDueWeek(p.getcDueWeek()); | |
2011 | 2013 | if(StringUtils.isNotEmpty(p.getYyzyfmHospitalId())){ |
2012 | 2014 | Map<String, String> doctorObj = new HashMap<>(); |
2013 | 2015 | doctorObj.put("id", p.getYyzyfmHospitalId()); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PregnantInfoResult.java
View file @
395c0a9
... | ... | @@ -9,6 +9,9 @@ |
9 | 9 | * Created by Administrator on 2016/6/15. |
10 | 10 | */ |
11 | 11 | public class PregnantInfoResult { |
12 | + private String nextCheckTime; | |
13 | + //前端计算出来的孕周 | |
14 | + private String cDueWeek; | |
12 | 15 | //是否预约住院分娩医院(秦皇岛定制) 1 否 2是 |
13 | 16 | private String isYyzyfmHospital; |
14 | 17 | |
... | ... | @@ -201,6 +204,22 @@ |
201 | 204 | |
202 | 205 | public String getMensStopStartDay() { |
203 | 206 | return mensStopStartDay; |
207 | + } | |
208 | + | |
209 | + public String getNextCheckTime() { | |
210 | + return nextCheckTime; | |
211 | + } | |
212 | + | |
213 | + public void setNextCheckTime(String nextCheckTime) { | |
214 | + this.nextCheckTime = nextCheckTime; | |
215 | + } | |
216 | + | |
217 | + public String getcDueWeek() { | |
218 | + return cDueWeek; | |
219 | + } | |
220 | + | |
221 | + public void setcDueWeek(String cDueWeek) { | |
222 | + this.cDueWeek = cDueWeek; | |
204 | 223 | } |
205 | 224 | |
206 | 225 | public void setMensStopStartDay(String mensStopStartDay) { |