Commit a6c61c79 by 徐高华

null

parent d5b66f7d
......@@ -404,7 +404,7 @@ public class QwMomentPlanServiceImpl implements QwMomentPlanService {
}
private void send(TabQwMomentPlan plan) {
if(plan.getDeleteFlag()==1 || plan.getStatusFlag()!=1 || plan.getEndDate().getTime()<=System.currentTimeMillis()) {
if(null == plan || plan.getDeleteFlag()==1 || plan.getStatusFlag()!=1 || plan.getEndDate().getTime()<=System.currentTimeMillis()) {
logger.info("计划已停止={}",plan.getPlanId());
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment