Browse Source

bug修复

master
luogw 3 weeks ago
parent
commit
e6201660f8
  1. 2
      src/main/java/com/project/task/application/impl/TaskApplicationServiceImpl.java

2
src/main/java/com/project/task/application/impl/TaskApplicationServiceImpl.java

@ -75,7 +75,7 @@ public class TaskApplicationServiceImpl implements TaskApplicationService {
@Override @Override
public Result<Boolean> isDeletedTask(Long taskId, List<Long> taskKpIds,Integer type) { public Result<Boolean> isDeletedTask(Long taskId, List<Long> taskKpIds,Integer type) {
if (taskKpIds == null || CollectionUtils.isEmpty(taskKpIds) || type != null) { if (taskKpIds == null || CollectionUtils.isEmpty(taskKpIds) || type == null) {
throw new MissingParameterException("参数不完整"); throw new MissingParameterException("参数不完整");
} }

Loading…
Cancel
Save