goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/controller/RewardPunishmentStandardController.java
@@ -109,7 +109,15 @@ return new ResultVO<>(ResultCodes.CLIENT_PARAM_ILLEGAL); } List<Long> idList = Arrays.asList(ids); this.rewardPunishmentStandardService.removeByIds(idList); List<RewardPunishmentStandard> delList = new ArrayList<>(); idList.forEach(f->{ RewardPunishmentStandard info = new RewardPunishmentStandard(); info.setDelFlag(1); info.setId(f); delList.add(info); }); this.rewardPunishmentStandardService.updateBatchById(delList); return new ResultVO<>(ResultCodes.OK); }