Commit 1d8950a9f8b1f3ad1bf07d399fa85d06e3175734
1 parent
6c7246428e
Exists in
master
and in
8 other branches
增加设置parentid
Showing 2 changed files with 2 additions and 10 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PostReviewFacade.java
View file @
1d8950a
| ... | ... | @@ -123,10 +123,10 @@ |
| 123 | 123 | Assert.notNull(postReviewModel, "没有对应的数据."); |
| 124 | 124 | PostReviewResult postReviewResult = new PostReviewResult(); |
| 125 | 125 | postReviewResult.convertToResult(postReviewModel); |
| 126 | - Organization organization = organizationService.getOrganization(NumberUtils.toInt(postReviewModel.getHospitalId())); | |
| 126 | + /* Organization organization = organizationService.getOrganization(NumberUtils.toInt(postReviewModel.getHospitalId())); | |
| 127 | 127 | if(null!=organization){ |
| 128 | 128 | postReviewResult.setHospitalName(organization.getName()); |
| 129 | - } | |
| 129 | + }*/ | |
| 130 | 130 | try { |
| 131 | 131 | if(StringUtils.isNotEmpty(postReviewModel.getDiagnosis())){ |
| 132 | 132 | List list = JsonUtil.toList(postReviewModel.getDiagnosis(), List.class); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PostReviewResult.java
View file @
1d8950a
| ... | ... | @@ -21,8 +21,6 @@ |
| 21 | 21 | //产妇id |
| 22 | 22 | private String parentId; |
| 23 | 23 | //医院名称 |
| 24 | - private String hospitalName; | |
| 25 | - | |
| 26 | 24 | //分娩天数 |
| 27 | 25 | private String day; |
| 28 | 26 | //健康情况 |
| 29 | 27 | |
| ... | ... | @@ -89,13 +87,7 @@ |
| 89 | 87 | //下次产检时间 |
| 90 | 88 | private Map nextCheckTime; |
| 91 | 89 | |
| 92 | - public String getHospitalName() { | |
| 93 | - return hospitalName; | |
| 94 | - } | |
| 95 | 90 | |
| 96 | - public void setHospitalName(String hospitalName) { | |
| 97 | - this.hospitalName = hospitalName; | |
| 98 | - } | |
| 99 | 91 | |
| 100 | 92 | public PostReviewResult convertToResult(PostReviewModel postReviewModel) { |
| 101 | 93 | setId(postReviewModel.getId()); |