Commit 955e8fdda4a90336eb2165b54e7ca6f0052117be
1 parent
5a410ebd99
Exists in
master
and in
6 other branches
1
Showing 1 changed file with 4 additions and 4 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java
View file @
955e8fd
... | ... | @@ -1076,16 +1076,16 @@ |
1076 | 1076 | for (int i = 0; i <= 13; i++) { |
1077 | 1077 | lowMap.put(i, i * avg); |
1078 | 1078 | } |
1079 | - double avg2 = (low2 - low) / 27; | |
1080 | - for (int i = 1; i <= 27; i++) { | |
1079 | + double avg2 = (low2 - low) / 29; | |
1080 | + for (int i = 1; i <= 29; i++) { | |
1081 | 1081 | lowMap.put(13 + i, low + i * avg2); |
1082 | 1082 | } |
1083 | 1083 | double highAvg = high / 13; |
1084 | 1084 | for (int i = 0; i <= 13; i++) { |
1085 | 1085 | highMap.put(i, i * highAvg); |
1086 | 1086 | } |
1087 | - double highAvg2 = (high2 - high) / 27; | |
1088 | - for (int i = 1; i <= 27; i++) { | |
1087 | + double highAvg2 = (high2 - high) / 29; | |
1088 | + for (int i = 1; i <= 29; i++) { | |
1089 | 1089 | highMap.put(13 + i, high + i * highAvg2); |
1090 | 1090 | } |
1091 | 1091 | for (int i = 0; i <= 42; i++) { |