Commit e7fd58e75b14ddbde5b4a8f5505840ce949a8d00
1 parent
c2d0019b
1.历史路单调整时间从10天变成7天
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/bsth/controller/realcontrol/ScheduleRealInfoController.java
| @@ -588,7 +588,7 @@ public class ScheduleRealInfoController extends BaseController<ScheduleRealInfo, | @@ -588,7 +588,7 @@ public class ScheduleRealInfoController extends BaseController<ScheduleRealInfo, | ||
| 588 | long t = System.currentTimeMillis(); | 588 | long t = System.currentTimeMillis(); |
| 589 | if(c != 1) | 589 | if(c != 1) |
| 590 | t -= (ONE_DAY + (1000 * 60 * 60 * 6)); | 590 | t -= (ONE_DAY + (1000 * 60 * 60 * 6)); |
| 591 | - for(int i = 0; i < 10; i ++){ | 591 | + for(int i = 0; i < 7; i ++){ |
| 592 | rs.add(fmtyyyyMMdd.print(t)); | 592 | rs.add(fmtyyyyMMdd.print(t)); |
| 593 | t -= ONE_DAY; | 593 | t -= ONE_DAY; |
| 594 | } | 594 | } |