Compare commits

..

No commits in common. "fa2fdf48739f9c9574144eca85d8989d4431b536" and "437ada5a4f0abe8c3f9c8cdf3035bbe0f0e971d0" have entirely different histories.

View File

@ -31,9 +31,6 @@ public class TasksController {
public CommonResult<TasksResp> findOneTasksOrTask(@NotNull String taskId){
return CommonResult.success(taskService.getRespById(taskId));
}
/**
* 复制task节点
* */
@PostMapping(path="/copyTask")
public CommonResult<Void> copyTask(@NotEmpty String taskId){
taskService.copyTask(taskId);