Commit a396da5e1ce4bae4231585b2d4673420e016c008

Authored by liquanyu
1 parent 85ef89e7db

统计

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/RiskReportFacade.java View file @ a396da5
... ... @@ -852,7 +852,7 @@
852 852 Object value2 = o2.get("highRiskPatTotal");
853 853 int num2 = Integer.parseInt(String.valueOf(value2));
854 854  
855   - return num1 == num2 ? 0 : (num1 > num2 ? 1 : -1);
  855 + return num1 == num2 ? 0 : (num1 > num2 ? -1 : 1);
856 856 }
857 857 });
858 858 }