huangzhen
2023-09-26 28231163c688c379a688ce6878a1126ee218aa52
exam-system/src/main/java/com/gkhy/exam/coalmine/service/baseService/impl/CmStaffExamServiceImpl.java
@@ -34,7 +34,7 @@
    public List<CmStaffExam> listValid(Long id) {
        LambdaQueryWrapper<CmStaffExam> wrapper = new LambdaQueryWrapper<>();
        wrapper.eq(CmStaffExam::getDelFlag, DeleteStatusEnum.NO.getStatus())
                .eq(CmStaffExam::getId,id);
                .eq(CmStaffExam::getStaffId,id);
        return cmStaffExamMapper.selectList(wrapper);
    }
}