| | |
| | | |
| | | 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; |
| | |
| | | @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({ |
| | |
| | | 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); |
| | | // } |
| | | } |