Compare commits

..

No commits in common. "ce02979a98b20bd1d344a7a48f6fbd40891c9a1e" and "5e26599858fb45dc4fa89e20fb6931d896c28370" have entirely different histories.

1 changed files with 0 additions and 10 deletions

View File

@ -77,14 +77,4 @@ public class TaskController {
taskService.modifyTask(token,task);
return ResponseMap.ofSuccess("操作成功");
}
@SneakyThrows
@DeleteMapping
public ResponseMap deleteTaskAndSubTask(
@RequestHeader("Token") String token,
@PathVariable("projectId") Integer projectId,
@RequestParam("taskId") Long taskId
) {
return ResponseMap.ofSuccess("删除成功");
}
}