Commit c9de087703005ee4c694f6fdbf68d24ac64018e8
1 parent
d381acb408
Exists in
master
and in
8 other branches
座机号 替换的问题
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/DeleteProcessHandler.java
View file @
c9de087
| ... | ... | @@ -125,7 +125,7 @@ |
| 125 | 125 | List<AntExChuModel> antExChuModels = antenatalExaminationService.queryAntExChu(antExChuQuery.convertToQuery()); |
| 126 | 126 | if(StringUtils.isNotEmpty(antExChuId) && CollectionUtils.isNotEmpty(antExChuModels)){ |
| 127 | 127 | for(int i=0;i<antExChuModels.size();i++){ |
| 128 | - if(antExChuModels.get(i).equals(antExChuId)){ | |
| 128 | + if(antExChuModels.get(i).getId().equals(antExChuId)){ | |
| 129 | 129 | antExChuModels.remove(i); |
| 130 | 130 | break; |
| 131 | 131 | } |