package com.gkhy.exam.admin.controller.web; import com.gkhy.exam.common.annotation.RepeatSubmit; import com.gkhy.exam.common.api.CommonResult; import com.gkhy.exam.system.domain.DocumentBorrowCopy; import com.gkhy.exam.system.domain.DocumentChangesInvalidated; import com.gkhy.exam.system.service.DocumentChangesInvalidatedService; 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 hh * @since 2025-08-25 15:01:44 */ @RestController @RequestMapping("/system/documentChangesInvalidated") @Api(tags = "文件更改作废申请") public class DocumentChangesInvalidatedController { @Autowired private DocumentChangesInvalidatedService documentChangesInvalidatedService; @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"), @ApiImplicitParam(paramType = "query", name = "companyId", dataType = "int", required = false, value = "公司id"), }) @GetMapping("/selectDocumentChangesInvalidatedList") public CommonResult selectDocumentChangesInvalidatedList(DocumentChangesInvalidated documentChangesInvalidated){ return CommonResult.success(documentChangesInvalidatedService.selectDocumentChangesInvalidatedList(documentChangesInvalidated)); } @RepeatSubmit @ApiOperation(value = "新增编辑文件更改作废申请") @PostMapping("/saveDocumentChangesInvalidated") public CommonResult saveDocumentChangesInvalidated(@RequestBody @Validated DocumentChangesInvalidated documentChangesInvalidated){ return documentChangesInvalidatedService.saveDocumentChangesInvalidated(documentChangesInvalidated); } @ApiOperation(value = "文件更改作废申请详情") @ApiImplicitParams({ @ApiImplicitParam(paramType = "query", name = "id", dataType = "int", required = true, value = "id"), }) @GetMapping("/getDocumentChangesInvalidated") public CommonResult getDocumentChangesInvalidated(@RequestParam Long id){ return documentChangesInvalidatedService.getDocumentChangesInvalidated(id); } @ApiOperation(value = "删除文件更改作废申请") @ApiImplicitParams({ @ApiImplicitParam(paramType = "query", name = "id", dataType = "int", required = true, value = "id"), }) @GetMapping("/deletedDocumentChangesInvalidated") public CommonResult deletedDocumentChangesInvalidated(@RequestParam Long id){ return documentChangesInvalidatedService.deletedDocumentChangesInvalidated(id); } }