This commit is contained in:
bianyadong
2024-05-23 11:57:26 +08:00
parent 7f512eb2fc
commit 8b59143467

View File

@@ -78,7 +78,7 @@ public class EmployeeTrainingDAO {
public Integer unCompleteNum(Long shopId) {
Example example = new Example(EmployeeTrainingDO.class);
example.createCriteria().andEqualTo("shopId", shopId).andCondition("practical_exam_status != 1");
example.createCriteria().andEqualTo("shopId", shopId).andCondition("theoretical_exam_status != 1").andCondition("practical_exam_status != 1");
return employeeTrainingMapper.selectCountByExample(example);
}
}