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.AnnualVerificationPlan;
|
import com.gkhy.exam.system.domain.SixInspection;
|
import com.gkhy.exam.system.service.SixInspectionService;
|
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.*;
|
|
/**
|
* <p>
|
* 6s检查主表 前端控制器
|
* </p>
|
*
|
* @author hh
|
* @since 2025-08-25 15:01:44
|
*/
|
@RestController
|
@RequestMapping("/system/sixInspection")
|
@Api(tags = "6s检查管理")
|
public class SixInspectionController {
|
|
@Autowired
|
private SixInspectionService sixInspectionService;
|
|
|
@ApiOperation(value = "6s检查列表(分页)")
|
@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"),
|
@ApiImplicitParam(paramType = "query", name = "year", dataType = "String", required = false, value = "年份"),
|
|
})
|
@GetMapping("/selectSixInspectionList")
|
public CommonResult selectSixInspectionList(SixInspection sixInspection){
|
return CommonResult.success(sixInspectionService.selectSixInspectionList(sixInspection));
|
}
|
@RepeatSubmit
|
@ApiOperation(value = "新增编辑6s检查")
|
@PostMapping("/saveSixInspection")
|
public CommonResult saveSixInspection(@RequestBody @Validated SixInspection sixInspection){
|
return sixInspectionService.saveSixInspection(sixInspection);
|
}
|
@ApiOperation(value = "6s检查详情")
|
@ApiImplicitParams({
|
@ApiImplicitParam(paramType = "query", name = "id", dataType = "int", required = true, value = "id"),
|
})
|
@GetMapping("/getSixInspection")
|
public CommonResult getSixInspection(@RequestParam Long id){
|
return sixInspectionService.getSixInspection(id);
|
}
|
@ApiOperation(value = "删除6s检查")
|
@ApiImplicitParams({
|
@ApiImplicitParam(paramType = "query", name = "id", dataType = "int", required = true, value = "id"),
|
})
|
@GetMapping("/deletedSixInspection")
|
public CommonResult deletedSixInspection(@RequestParam Long id){
|
return sixInspectionService.deletedSixInspection(id);
|
}
|
|
}
|