Commit ca95b1e8cc601d183dc7d3c7b9d688b880c42238
1 parent
2b1e6c3936
Exists in
master
and in
6 other branches
update code
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/RiskReportFacade.java
View file @
ca95b1e
... | ... | @@ -182,7 +182,7 @@ |
182 | 182 | } |
183 | 183 | } |
184 | 184 | |
185 | - results.addAll(getOtherRiskCount(riskPatientCount,allPatientCount,patientsQuery)); | |
185 | + results.addAll(getOtherRiskCount(riskPatientCount,allPatientCount)); | |
186 | 186 | |
187 | 187 | Collections.sort(results,new RiskReportResult()); |
188 | 188 | |
... | ... | @@ -195,7 +195,7 @@ |
195 | 195 | * 自定义高危因素统计 |
196 | 196 | * @return |
197 | 197 | */ |
198 | - private List<RiskReportResult> getOtherRiskCount(int riskPatientCount, int allPatientCount,PatientsQuery patientsQuery) | |
198 | + private List<RiskReportResult> getOtherRiskCount(int riskPatientCount, int allPatientCount) | |
199 | 199 | { |
200 | 200 | List<RiskReportResult> results = new ArrayList<>(); |
201 | 201 | if (riskPatientCount > 0) |