Commit 5afd83f68e0534bd085fe0f0f9ac4390abf8361e
1 parent
58d26b7082
Exists in
master
and in
6 other branches
update
Showing 3 changed files with 12 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/SieveApplyOrderAddRequest.java
View file @
5afd83f
| ... | ... | @@ -484,7 +484,7 @@ |
| 484 | 484 | sieveApplyOrderModel.setLymsSieveId(lymsSieveId); |
| 485 | 485 | sieveApplyOrderModel.setApplyTime(DateUtil.parseYMD(applyTime)); |
| 486 | 486 | |
| 487 | - | |
| 487 | + sieveApplyOrderModel.setNoOfFetuses(Integer.parseInt(noOfFetuses)); | |
| 488 | 488 | sieveApplyOrderModel.setPatientID(patientID); |
| 489 | 489 | sieveApplyOrderModel.setApplicationNo(applicationNo); |
| 490 | 490 | sieveApplyOrderModel.setSmoking(smoking); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/SieveListResult.java
View file @
5afd83f
| ... | ... | @@ -146,6 +146,8 @@ |
| 146 | 146 | |
| 147 | 147 | //建档机构 |
| 148 | 148 | private String foundHospital; |
| 149 | + //修改时间 | |
| 150 | + private Date modified; | |
| 149 | 151 | |
| 150 | 152 | public String getExportTime() { |
| 151 | 153 | return exportTime; |
| ... | ... | @@ -193,6 +195,14 @@ |
| 193 | 195 | |
| 194 | 196 | public void setDueDate(String dueDate) { |
| 195 | 197 | this.dueDate = dueDate; |
| 198 | + } | |
| 199 | + | |
| 200 | + public Date getModified() { | |
| 201 | + return modified; | |
| 202 | + } | |
| 203 | + | |
| 204 | + public void setModified(Date modified) { | |
| 205 | + this.modified = modified; | |
| 196 | 206 | } |
| 197 | 207 | |
| 198 | 208 | public String getbScanInfo() { |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/SieveWorker.java
View file @
5afd83f
| ... | ... | @@ -83,7 +83,7 @@ |
| 83 | 83 | antExQuery.setYn(YnEnums.YES.getId()); |
| 84 | 84 | antExQuery.setHospitalId(hospitalId); |
| 85 | 85 | antExQuery.setParentId(sieveModel.getParentId()); |
| 86 | - | |
| 86 | + sieveListResult.setModified(sieveModel.getModified()); | |
| 87 | 87 | |
| 88 | 88 | //获取产筛申请数据 |
| 89 | 89 | SieveApplyOrderQuery sieveApplyOrderQuery = new SieveApplyOrderQuery(); |