增加在线标注util类

This commit is contained in:
weiweiw 2024-11-24 16:25:55 +08:00
parent 7cc96be03b
commit a9d0a0d4b8
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ public class AnnotationTaskController extends BaseController {
*/
@PostMapping("/delete/{taskId}")
public AjaxResult remove(@PathVariable Long taskId) {
annotationTaskService.deleteTaskById(taskId)
annotationTaskService.deleteTaskById(taskId);
return AjaxResult.success();
}