Compare commits
2 Commits
5e26599858
...
ce02979a98
Author | SHA1 | Date |
---|---|---|
yang.yongquan | ce02979a98 | |
yang.yongquan | 0417ba1bda |
|
@ -77,4 +77,14 @@ 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("删除成功");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue