heheng
2025-11-26 5011ebf747ddfa41840b352c9e39cf369a8f047c
multi-admin/src/main/java/com/gkhy/exam/admin/controller/web/InternalAuditCheckController.java
@@ -3,6 +3,7 @@
import com.gkhy.exam.common.annotation.RepeatSubmit;
import com.gkhy.exam.common.api.CommonResult;
import com.gkhy.exam.system.domain.InternalAuditCheck;
import com.gkhy.exam.system.domain.Meetings;
import com.gkhy.exam.system.domain.vo.InternalAuditCheckVo;
import com.gkhy.exam.system.service.InternalAuditCheckService;
@@ -44,13 +45,13 @@
    @RepeatSubmit
    @ApiOperation(value = "新增内审检查")
    @PostMapping("/saveInternalAuditCheck")
    public CommonResult insertInternalAuditCheck(@RequestBody @Validated InternalAuditCheckVo internalAuditCheckVo){
        return internalAuditCheckService.insertInternalAuditCheck(internalAuditCheckVo);
    public CommonResult insertInternalAuditCheck(@RequestBody @Validated InternalAuditCheck internalAuditCheck){
        return internalAuditCheckService.insertInternalAuditCheck(internalAuditCheck);
    }
    @ApiOperation(value = "修改内审检查")
    @PostMapping("/updateInternalAuditCheck")
    public CommonResult updateInternalAuditCheck(@RequestBody @Validated InternalAuditCheckVo internalAuditCheckVo){
        return internalAuditCheckService.updateInternalAuditCheck(internalAuditCheckVo);
    public CommonResult updateInternalAuditCheck(@RequestBody @Validated InternalAuditCheck internalAuditCheck){
        return internalAuditCheckService.updateInternalAuditCheck(internalAuditCheck);
    }
    @ApiOperation(value = "删除内审检查")
    @ApiImplicitParams({
@@ -61,12 +62,12 @@
        return internalAuditCheckService.deletedInternalAuditCheck(id);
    }
    @ApiOperation(value = "内审检查详情")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType = "query", name = "id", dataType = "int", required = true, value = "id"),
    })
    @GetMapping("/internalAuditCheckInfo")
    public CommonResult internalAuditCheckInfo(@RequestParam Integer id){
        return internalAuditCheckService.internalAuditCheckInfo(id);
    }
//    @ApiOperation(value = "内审检查详情")
//    @ApiImplicitParams({
//            @ApiImplicitParam(paramType = "query", name = "id", dataType = "int", required = true, value = "id"),
//    })
//    @GetMapping("/internalAuditCheckInfo")
//    public CommonResult internalAuditCheckInfo(@RequestParam Integer id){
//        return internalAuditCheckService.internalAuditCheckInfo(id);
//    }
}