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.AnnualMaintenanceEvaluate; import com.gkhy.exam.system.domain.AnnualMaintenanceService; import com.gkhy.exam.system.service.AnnualMaintenanceServiceService; 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-07-31 16:12:02 */ @RestController @RequestMapping("/system/annualMaintenanceService") @Api(tags = "年度基础设施维护保养管理") public class AnnualMaintenanceServiceController { @Autowired private AnnualMaintenanceServiceService annualMaintenanceServiceService; @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("/selectAnnualMaintenanceServiceList") public CommonResult selectAnnualMaintenanceServiceList(AnnualMaintenanceService annualMaintenanceService){ return CommonResult.success(annualMaintenanceServiceService.selectAnnualMaintenanceServiceList(annualMaintenanceService)); } @RepeatSubmit @ApiOperation(value = "新增编辑年度基础设施维护保养管理") @PostMapping("/saveAnnualMaintenanceService") public CommonResult saveAnnualMaintenanceService(@RequestBody @Validated AnnualMaintenanceService annualMaintenanceService){ return annualMaintenanceServiceService.saveAnnualMaintenanceService(annualMaintenanceService); } @ApiOperation(value = "年度基础设施维护保养管理详情") @GetMapping("/getAnnualMaintenanceService") @ApiImplicitParams({ @ApiImplicitParam(paramType = "query", name = "id", dataType = "int", required = true, value = "id"), }) public CommonResult getAnnualMaintenanceService(@RequestParam Integer id){ return annualMaintenanceServiceService.getAnnualMaintenanceService(id); } @ApiOperation(value = "删除年度基础设施维护保养管理") @ApiImplicitParams({ @ApiImplicitParam(paramType = "query", name = "id", dataType = "int", required = true, value = "id"), }) @GetMapping("/deletedAnnualMaintenanceService") public CommonResult deletedAnnualMaintenanceService(@RequestParam Integer id){ return annualMaintenanceServiceService.deletedAnnualMaintenanceService(id); } }