Commit e8dc8cae29c482e2ed2d658bedbd4a414e224f7e
1 parent
79b3271a45
Exists in
master
and in
8 other branches
增加设置parentid
Showing 1 changed file with 3 additions and 3 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PostReviewFacade.java
View file @
e8dc8ca
... | ... | @@ -12,6 +12,7 @@ |
12 | 12 | import com.lyms.platform.common.utils.JsonUtil; |
13 | 13 | import com.lyms.platform.operate.web.request.PostReviewQueryRequest; |
14 | 14 | import com.lyms.platform.operate.web.request.PostReviewRequest; |
15 | +import com.lyms.platform.operate.web.result.AntData; | |
15 | 16 | import com.lyms.platform.operate.web.result.HighScoreResult; |
16 | 17 | import com.lyms.platform.operate.web.result.PostReviewListResult; |
17 | 18 | import com.lyms.platform.operate.web.result.PostReviewResult; |
... | ... | @@ -21,7 +22,6 @@ |
21 | 22 | import com.lyms.platform.pojo.Patients; |
22 | 23 | import com.lyms.platform.pojo.PostReviewModel; |
23 | 24 | import com.lyms.platform.query.MatDeliverQuery; |
24 | -import com.lyms.platform.query.PatientsQuery; | |
25 | 25 | import com.lyms.platform.query.PostReviewQuery; |
26 | 26 | import org.apache.commons.collections.CollectionUtils; |
27 | 27 | import org.apache.commons.lang.StringUtils; |
... | ... | @@ -146,7 +146,7 @@ |
146 | 146 | } |
147 | 147 | HighScoreResult highScoreResult = examinationFacade.findLastRisk(patientsList.getPid(),false); |
148 | 148 | |
149 | - List<PostReviewListResult.AntData> dataList = new ArrayList<>(); | |
149 | + List<AntData> dataList = new ArrayList<>(); | |
150 | 150 | if(CollectionUtils.isNotEmpty(postReviewModels)){ |
151 | 151 | String hospitalName=""; |
152 | 152 | for(PostReviewModel model:postReviewModels){ |
... | ... | @@ -154,7 +154,7 @@ |
154 | 154 | if(null!=organization){ |
155 | 155 | hospitalName=organization.getName(); |
156 | 156 | } |
157 | - dataList.add(new PostReviewListResult.AntData(model,hospitalName,patientsList.getFmDate())); | |
157 | + dataList.add(new AntData(model, hospitalName, patientsList.getFmDate())); | |
158 | 158 | } |
159 | 159 | } |
160 | 160 | postReviewListResult.convertToResult(postReviewModels, patientsList, dueDate); |