Commit a24e87723d945a54bf2fefcb72e985c24a20df9f
1 parent
a44d88bfea
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 3 additions and 3 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyBookbuildingFacade.java
View file @
a24e877
| ... | ... | @@ -2475,9 +2475,9 @@ |
| 2475 | 2475 | public BaseListResponse queryObstetricDiagnosisQhdList(BabyManageRequest request, Integer userId) { |
| 2476 | 2476 | |
| 2477 | 2477 | String hospitalName = ""; |
| 2478 | - List<BabyManageListResult> list = null; | |
| 2479 | - BabyModelQuery babyQuery = null; | |
| 2480 | - List<BabyModel> models = null; | |
| 2478 | + List<BabyManageListResult> list = new ArrayList<>(); | |
| 2479 | + BabyModelQuery babyQuery = new BabyModelQuery(); | |
| 2480 | + List<BabyModel> models = new ArrayList<>(); | |
| 2481 | 2481 | try { |
| 2482 | 2482 | String hospitalId = autoMatchFacade.getHospitalId(userId); |
| 2483 | 2483 | hospitalName = organizationService.getOrganization(Integer.valueOf(hospitalId)).getName(); |