From 28231163c688c379a688ce6878a1126ee218aa52 Mon Sep 17 00:00:00 2001 From: huangzhen <867217663@qq.com> Date: 星期二, 26 九月 2023 16:53:48 +0800 Subject: [PATCH] 煤矿功能 --- exam-system/src/main/java/com/gkhy/exam/coalmine/controller/ExaminerManageController.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exam-system/src/main/java/com/gkhy/exam/coalmine/controller/ExaminerManageController.java b/exam-system/src/main/java/com/gkhy/exam/coalmine/controller/ExaminerManageController.java index 0b320ed..d542bc5 100644 --- a/exam-system/src/main/java/com/gkhy/exam/coalmine/controller/ExaminerManageController.java +++ b/exam-system/src/main/java/com/gkhy/exam/coalmine/controller/ExaminerManageController.java @@ -127,7 +127,7 @@ */ @ApiOperation(value = "根据id删除考评员",httpMethod = "GET") @ApiImplicitParam(name = "id",dataTypeClass = Long.class,value = "考评员id",required = true) - @GetMapping("/del") + @GetMapping("/del/{id}") public AjaxResult delete(@PathVariable @NotNull(message = "id不能为空") Long id) { return this.eduResourcesManagerService.removeExaminerById(id); } @@ -137,7 +137,7 @@ */ @ApiOperation(value = "根据id删除与之关联的工种信息",httpMethod = "GET") @ApiImplicitParam(name = "id",dataTypeClass = Long.class,value = "关联的工种id",required = true) - @GetMapping("/operateType/del") + @GetMapping("/operateType/del/{id}") public AjaxResult deleteExaminerBindOperateType(@PathVariable @NotNull(message = "id不能为空") Long id) { return this.eduResourcesManagerService.deleteExaminerBindOperateType(id); } -- Gitblit v1.9.2