|
|
@@ -242,6 +242,7 @@ public class AppPlanServiceImpl extends ServiceImpl<AppPlanMapper, AppPlan> impl
|
|
|
for (AppPlan ap :
|
|
|
appPlans) {
|
|
|
//修改计划状态为停用
|
|
|
+ ap.setBuildTaskNow(0);
|
|
|
ap.setPlanStatus(2);
|
|
|
baseMapper.updateById(ap);
|
|
|
|
|
|
@@ -252,6 +253,7 @@ public class AppPlanServiceImpl extends ServiceImpl<AppPlanMapper, AppPlan> impl
|
|
|
//设置下发状态为未下发
|
|
|
plan.setDistribute("0");
|
|
|
plan.setPlanStatus(2);
|
|
|
+ plan.setBuildTaskNow(0);
|
|
|
baseMapper.updateById(plan);
|
|
|
|
|
|
if (ObjectUtil.notEqual(plan.getTaskHasCompleted(), 1)) {
|