Commit 64b508250318840bb867c26ecf36da122322b2f7
1 parent
dfd87b1b
update...
Showing
1 changed file
with
2 additions
and
0 deletions
src/main/java/com/bsth/redis/ScheduleRedisService.java
| ... | ... | @@ -312,6 +312,8 @@ public class ScheduleRedisService implements CommandLineRunner { |
| 312 | 312 | */ |
| 313 | 313 | public void calcRealDate(String startTime, ScheduleRealInfo sch) { |
| 314 | 314 | try { |
| 315 | + if(null == startTime) | |
| 316 | + return; | |
| 315 | 317 | |
| 316 | 318 | String rq = sch.getScheduleDateStr(); |
| 317 | 319 | //计发时间 | ... | ... |