heheng
2025-07-17 4e35f136d1d2aca07b42ab0fdf267e6aa1f3f9c3
multi-admin/src/main/java/com/gkhy/exam/admin/controller/web/ManagementPlanController.java
@@ -36,10 +36,11 @@
            @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("/selectManagementPlanList")
    public CommonResult selectManagementPlanList(Integer companyId){
        return CommonResult.success(managementPlanService.selectManagementPlanList(companyId));
    public CommonResult selectManagementPlanList(ManagementPlan managementPlan){
        return CommonResult.success(managementPlanService.selectManagementPlanList(managementPlan));
    }
    @RepeatSubmit
    @ApiOperation(value = "新增管理审批计划")