文件名从 exam-admin/src/main/java/com/gkhy/exam/admin/web/ExPhaseStudentController.java 修改 |
| | |
| | | package com.gkhy.exam.admin.web; |
| | | package com.gkhy.exam.admin.controller.web; |
| | | |
| | | |
| | | import com.gkhy.exam.common.annotation.Log; |
| | |
| | | } |
| | | |
| | | @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(); |
| | | } |