培训完成短信
This commit is contained in:
@@ -77,4 +77,13 @@ public class EmployeeTrainingDAO {
|
||||
.andIn("assessment_status", statusList);
|
||||
return employeeTrainingMapper.selectByExample(example);
|
||||
}
|
||||
|
||||
public Integer unCompleteNum() {
|
||||
List<Integer> statusList = new ArrayList<>();
|
||||
statusList.add(0);
|
||||
statusList.add(1);
|
||||
Example example = new Example(EmployeeTrainingDO.class);
|
||||
example.createCriteria().andIn("assessment_status", statusList);
|
||||
return employeeTrainingMapper.selectCountByExample(example);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user