“djh”
2 days ago 2d9bf42ce507096c3b73a782da3ad16f29d2ccdc
multi-admin/src/main/java/com/gkhy/exam/admin/controller/web/InconsistentController.java
@@ -34,10 +34,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("/selectInconsistentList")
    public CommonResult selectInconsistentList(Integer companyId){
        return CommonResult.success(inconsistentService.selectInconsistentList(companyId));
    public CommonResult selectInconsistentList(Integer companyId,String year){
        return CommonResult.success(inconsistentService.selectInconsistentList(companyId,year));
    }
    @RepeatSubmit
    @ApiOperation(value = "新增不符合项管理")