| | |
| | | @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 = "deptId", dataType = "int", required = false, value = "部门id"), |
| | | }) |
| | | @GetMapping("/selectCorrectionList") |
| | | public CommonResult selectCorrectionList(Integer companyId){ |
| | | return CommonResult.success(correctionService.selectCorrectionList(companyId)); |
| | | public CommonResult selectCorrectionList(Correction correction){ |
| | | return CommonResult.success(correctionService.selectCorrectionList(correction)); |
| | | } |
| | | @RepeatSubmit |
| | | @ApiOperation(value = "新增整改管理") |