Commit 3d8510453d10309d36eccf969e641d17fdf8d593
1 parent
b51166364b
Exists in
master
and in
1 other branch
增加社区id
Showing 1 changed file with 3 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/VisitFacade.java
View file @
3d85104
| ... | ... | @@ -108,7 +108,9 @@ |
| 108 | 108 | */ |
| 109 | 109 | private Patients findOnePuerperaByCardNo(String cardNo) { |
| 110 | 110 | PatientsQuery query = new PatientsQuery(); |
| 111 | - query.setCardNo(cardNo); | |
| 111 | + //先根据传入的手机号 | |
| 112 | +// query.setCardNo(cardNo); | |
| 113 | + query.setPhone(cardNo); | |
| 112 | 114 | query.setYn(YnEnums.YES.getId()); |
| 113 | 115 | // 根据身份证号找到产妇信息 |
| 114 | 116 | return patientsService.findOnePatientByCardNo(query); |