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.ManagementPlan;
|
import com.gkhy.exam.system.domain.Meetings;
|
import com.gkhy.exam.system.service.ManagementPlanService;
|
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>
|
* 管理审批计划 前端控制器
|
* </p>
|
*
|
* @author hh
|
* @since 2025-07-10 15:11:50
|
*/
|
@RestController
|
@RequestMapping("/system/managementPlan")
|
@Api(tags = "管理审批计划")
|
public class ManagementPlanController {
|
|
@Autowired
|
private ManagementPlanService managementPlanService;
|
|
|
@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("/selectManagementPlanList")
|
public CommonResult selectManagementPlanList(Integer companyId){
|
return CommonResult.success(managementPlanService.selectManagementPlanList(companyId));
|
}
|
@RepeatSubmit
|
@ApiOperation(value = "新增管理审批计划")
|
@PostMapping("/saveManagementPlan")
|
public CommonResult insertManagementPlan(@RequestBody @Validated ManagementPlan managementPlan){
|
return managementPlanService.insertManagementPlan(managementPlan);
|
}
|
@ApiOperation(value = "修改管理审批计划")
|
@PostMapping("/updateManagementPlan")
|
public CommonResult updateManagementPlan(@RequestBody @Validated ManagementPlan managementPlan){
|
return managementPlanService.updateManagementPlan(managementPlan);
|
}
|
@ApiOperation(value = "删除管理审批计划")
|
@ApiImplicitParams({
|
@ApiImplicitParam(paramType = "query", name = "id", dataType = "int", required = true, value = "id"),
|
})
|
@GetMapping("/deletedManagementPlan")
|
public CommonResult deletedManagementPlan(@RequestParam Integer id){
|
return managementPlanService.deletedManagementPlan(id);
|
}
|
|
}
|