unCompleteNum

This commit is contained in:
苏竹红
2024-05-23 11:53:57 +08:00
parent 15ad6f5209
commit f854b5a845

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("theoreticalExamStatus != 1").andCondition("practical_exam_status != 1", 1);
example.createCriteria().andEqualTo("shopId", shopId).andCondition("practical_exam_status != 1");
return employeeTrainingMapper.selectCountByExample(example);
}
}