“djh”
2 天以前 8c91afa9c1bbe5fae9d88cfd1e7243c376af69fe
multi-system/src/main/java/com/gkhy/exam/system/service/impl/CorrectionServiceImpl.java
@@ -30,9 +30,9 @@
    @Autowired
    private CorrectionMapper correctionMapper;
    @Override
    public CommonPage selectCorrectionList(Integer companyId) {
    public CommonPage selectCorrectionList(Correction correction) {
        PageUtils.startPage();
        List<Correction> corrections = correctionMapper.selectCorrectionList(companyId);
        List<Correction> corrections = correctionMapper.selectCorrectionList(correction);
        return CommonPage.restPage(corrections);
    }