“djh”
10 hours ago 2d9bf42ce507096c3b73a782da3ad16f29d2ccdc
multi-system/src/main/java/com/gkhy/exam/system/service/impl/InconsistentServiceImpl.java
@@ -28,9 +28,9 @@
    @Autowired
    private InconsistentMapper inconsistentMapper;
    @Override
    public CommonPage selectInconsistentList(Integer companyId) {
    public CommonPage selectInconsistentList(Integer companyId,String year) {
        PageUtils.startPage();
        List<Inconsistent> inconsistents = inconsistentMapper.selectInconsistentList(companyId);
        List<Inconsistent> inconsistents = inconsistentMapper.selectInconsistentList(companyId,year);
        return CommonPage.restPage(inconsistents);
    }