Commit dd90ccf6c37adcb5afaff4c3248982e7fe81f133
1 parent
f283d06314
Exists in
master
and in
6 other branches
bbbbbb
Showing 1 changed file with 3 additions and 3 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java
View file @
dd90ccf
| ... | ... | @@ -926,15 +926,15 @@ |
| 926 | 926 | iterator.remove(); |
| 927 | 927 | continue; |
| 928 | 928 | } |
| 929 | - if(ageType == 3 && (age > 30 || age < 20)) { | |
| 929 | + if(ageType == 3 && (age > 30 || age <= 20)) { | |
| 930 | 930 | iterator.remove(); |
| 931 | 931 | continue; |
| 932 | 932 | } |
| 933 | - if(ageType == 4 && (age > 40 || age < 30)) { | |
| 933 | + if(ageType == 4 && (age > 40 || age <= 30)) { | |
| 934 | 934 | iterator.remove(); |
| 935 | 935 | continue; |
| 936 | 936 | } |
| 937 | - if(ageType == 5 && age < 40) { | |
| 937 | + if(ageType == 5 && age <= 40) { | |
| 938 | 938 | iterator.remove(); |
| 939 | 939 | continue; |
| 940 | 940 | } |