Commit 049267937dbecae68dde48085e8a9a9f76fac1c1
1 parent
9a8c5528c1
Exists in
master
and in
6 other branches
SmsConfigModel 过滤掉不同步
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
View file @
0492679
... | ... | @@ -2576,7 +2576,7 @@ |
2576 | 2576 | PostReviewModel postReviewModel = postReviewService.findOneById(id); |
2577 | 2577 | |
2578 | 2578 | Patients patients = patientsService.findOnePatientById(postReviewModel.getParentId()); |
2579 | - if (patients == null) { | |
2579 | + if (patients != null) { | |
2580 | 2580 | /* 基础信息 */ |
2581 | 2581 | map.put("id", id); |
2582 | 2582 | map.put("username", patients.getUsername()); |