package com.gkhy.exam.admin.web; import com.gkhy.exam.common.annotation.Log; import com.gkhy.exam.common.annotation.RepeatSubmit; import com.gkhy.exam.common.api.CommonResult; import com.gkhy.exam.common.enums.BusinessType; import com.gkhy.exam.system.domain.ExExamRecord; import com.gkhy.exam.system.service.ExExamRecordService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParams; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; /** *

* 线下教育登记表 前端控制器 *

* * @author kzy * @since 2024-06-24 16:16:33 */ @Api(tags = "线下教育登记前端控制器") @RestController @RequestMapping("/exam-record") public class ExExamRecordController { @Autowired private ExExamRecordService examRecordService; @ApiOperation(value = "登记列表(分页)") @ApiImplicitParams({ @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"), @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10") }) @GetMapping("/list") public CommonResult list(ExExamRecord examRecord){ return CommonResult.success(examRecordService.selectExamRecordList(examRecord)); } @ApiOperation(value = "根据id获取登记信息") @GetMapping(value = { "/{recordId}" }) public CommonResult getExamRecordInfo(@PathVariable(value = "recordId", required = true) Long recordId) { return CommonResult.success(examRecordService.selectExamRecordById(recordId)); } @RepeatSubmit @Log(title = "线下教育登记管理", businessType = BusinessType.INSERT) @ApiOperation(value = "新增登记") @PostMapping public CommonResult add(@Validated @RequestBody ExExamRecord examRecord){ return CommonResult.success(examRecordService.insertExamRecord(examRecord)); } @RepeatSubmit @Log(title = "线下教育登记管理", businessType = BusinessType.UPDATE) @ApiOperation(value = "编辑登记") @PutMapping public CommonResult edit(@Validated @RequestBody ExExamRecord examRecord){ return CommonResult.success(examRecordService.updateExamRecord(examRecord)); } @RepeatSubmit @Log(title = "线下教育登记管理", businessType = BusinessType.DELETE) @ApiOperation(value = "删除登记") @DeleteMapping(value = { "/{recordId}" }) public CommonResult delete(@PathVariable(value = "recordId", required = true) Long recordId){ return CommonResult.success(examRecordService.deleteExamRecordById(recordId)); } }