kongzy
2024-09-14 f0f00e9ba8a755e4317e029d73b69a92ad9f9df1
exam-admin/src/main/java/com/gkhy/exam/admin/controller/web/ExPhaseStudentController.java
文件名从 exam-admin/src/main/java/com/gkhy/exam/admin/web/ExPhaseStudentController.java 修改
@@ -1,4 +1,4 @@
package com.gkhy.exam.admin.web;
package com.gkhy.exam.admin.controller.web;
import com.gkhy.exam.common.annotation.Log;
@@ -69,10 +69,10 @@
    }
    @RepeatSubmit
    @Log(title = "批次与学员关系管理", businessType = BusinessType.UPDATE)
    @Log(title = "批次与学员关系管理", businessType = BusinessType.DELETE)
    @ApiOperation(value = "批量删除学员")
    @DeleteMapping(value = { "/batchDelete" })
    public CommonResult batchDelete( List<Long> phaseStudentIds){
    public CommonResult batchDelete(@RequestBody List<Long> phaseStudentIds){
        phaseStudentService.batchDeletePhaseStudent(phaseStudentIds);
        return CommonResult.success();
    }