Commit 8447518f47f25cada368367c3fed89b7b4ee3cb8
1 parent
618f6a64c8
Exists in
master
and in
1 other branch
update code
Showing 3 changed files with 7 additions and 6 deletions
platform-dal/src/main/java/com/lyms/platform/query/BabyModelQuery.java
View file @
8447518
| ... | ... | @@ -130,7 +130,7 @@ |
| 130 | 130 | //是否高危 0非高危 1高危 |
| 131 | 131 | private Integer highRisk; |
| 132 | 132 | |
| 133 | - private Integer hospitalId; | |
| 133 | + private String hospitalId; | |
| 134 | 134 | |
| 135 | 135 | private Integer serviceType; |
| 136 | 136 | |
| 137 | 137 | |
| ... | ... | @@ -175,11 +175,11 @@ |
| 175 | 175 | this.serviceType = serviceType; |
| 176 | 176 | } |
| 177 | 177 | |
| 178 | - public Integer getHospitalId() { | |
| 178 | + public String getHospitalId() { | |
| 179 | 179 | return hospitalId; |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | - public void setHospitalId(Integer hospitalId) { | |
| 182 | + public void setHospitalId(String hospitalId) { | |
| 183 | 183 | this.hospitalId = hospitalId; |
| 184 | 184 | } |
| 185 | 185 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
View file @
8447518
| ... | ... | @@ -63,6 +63,7 @@ |
| 63 | 63 | patientsQuery.setYn(YnEnums.YES.getId()); |
| 64 | 64 | patientsQuery.setType(1); |
| 65 | 65 | patientsQuery.setHospitalId(yunRequest.getHospitalId()); |
| 66 | + | |
| 66 | 67 | patientsQuery.setCardNo(yunRequest.getPregnantCertificateNum()); |
| 67 | 68 | |
| 68 | 69 | if (yunRequest.getPregnantCertificateNum() != null) |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BookbuildingQueryRequest.java
View file @
8447518
| ... | ... | @@ -15,7 +15,7 @@ |
| 15 | 15 | private String bookbuildingType; |
| 16 | 16 | |
| 17 | 17 | //医院ID |
| 18 | - private Integer hospitalId; | |
| 18 | + private String hospitalId; | |
| 19 | 19 | |
| 20 | 20 | public String getCardNo() { |
| 21 | 21 | return cardNo; |
| 22 | 22 | |
| ... | ... | @@ -41,11 +41,11 @@ |
| 41 | 41 | this.bookbuildingType = bookbuildingType; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - public Integer getHospitalId() { | |
| 44 | + public String getHospitalId() { | |
| 45 | 45 | return hospitalId; |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - public void setHospitalId(Integer hospitalId) { | |
| 48 | + public void setHospitalId(String hospitalId) { | |
| 49 | 49 | this.hospitalId = hospitalId; |
| 50 | 50 | } |
| 51 | 51 | } |