Commit f592d1ee0a19b1743cc8956d8b77cdbdbf671c9a
1 parent
1370413996
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 8 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/TrackDownQueryRequest.java
View file @
f592d1e
| ... | ... | @@ -114,6 +114,10 @@ |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | public void setCheckOverDaysEnd(Integer checkOverDaysEnd) { |
| 117 | + if (checkOverDaysStart == null) | |
| 118 | + { | |
| 119 | + checkOverDaysStart = 1; | |
| 120 | + } | |
| 117 | 121 | this.checkOverDaysEnd = checkOverDaysEnd; |
| 118 | 122 | } |
| 119 | 123 | |
| ... | ... | @@ -130,6 +134,10 @@ |
| 130 | 134 | } |
| 131 | 135 | |
| 132 | 136 | public void setBeOverdueDaysEnd(Integer beOverdueDaysEnd) { |
| 137 | + if (beOverdueDaysStart == null) | |
| 138 | + { | |
| 139 | + beOverdueDaysStart = 1; | |
| 140 | + } | |
| 133 | 141 | this.beOverdueDaysEnd = beOverdueDaysEnd; |
| 134 | 142 | } |
| 135 | 143 |