Commit a2d135869179651d9b47b4132a9cbf3d60d813a9
1 parent
b62aceb537
Exists in
master
and in
6 other branches
在[区域妇幼管理]——[孕产妇管理]——[全部产妇管理]中,初诊日期仍然不显示具体日期
Showing 2 changed files with 4 additions and 4 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/QuanChanResult.java
View file @
a2d1358
... | ... | @@ -121,7 +121,7 @@ |
121 | 121 | * 秦皇岛需求 在区域妇幼管理---全部孕妇管理---全部产妇管理、全部孕妇管理两个界面,首次建档医院后面加初诊日期一栏,领劵社区 |
122 | 122 | */ |
123 | 123 | //初诊时间 |
124 | - private Date firstCheckTime; | |
124 | + private String firstCheckTime; | |
125 | 125 | |
126 | 126 | //领劵社区 |
127 | 127 | private String couponCommunity; |
128 | 128 | |
... | ... | @@ -134,11 +134,11 @@ |
134 | 134 | this.couponCommunity = couponCommunity; |
135 | 135 | } |
136 | 136 | |
137 | - public Date getFirstCheckTime() { | |
137 | + public String getFirstCheckTime() { | |
138 | 138 | return firstCheckTime; |
139 | 139 | } |
140 | 140 | |
141 | - public void setFirstCheckTime(Date firstCheckTime) { | |
141 | + public void setFirstCheckTime(String firstCheckTime) { | |
142 | 142 | this.firstCheckTime = firstCheckTime; |
143 | 143 | } |
144 | 144 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/QuanChanPatientWorker.java
View file @
a2d1358
... | ... | @@ -93,7 +93,7 @@ |
93 | 93 | * 秦皇岛需求 在区域妇幼管理---全部孕妇管理---全部产妇管理、全部孕妇管理两个界面,首次建档医院后面加初诊日期一栏列表 |
94 | 94 | */ |
95 | 95 | if (patients.getFirstCheckTime() != null){ |
96 | - chanResult.setFirstCheckTime(patients.getFirstCheckTime()); | |
96 | + chanResult.setFirstCheckTime(DateUtil.getyyyy_MM_dd(patients.getFirstCheckTime())); | |
97 | 97 | } |
98 | 98 | /*********************************************************/ |
99 | 99 | chanResult.setVcCardNo(patients.getVcCardNo()); |