优化同步离职日期

This commit is contained in:
Harryxzy 2024-04-26 15:13:54 +08:00
parent 4682866674
commit e7c46bc5e8
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ public interface EmployMapper {
DeptInfo getDeptInfoById(Long id);
/**
* 获取大于离职日期的人员信息
* 获取大于离职日期的 离职退休解聘人员信息
* @return
*/
List<DataCollectionEmployee> listByDismissDate(String dismissDate);

View File

@ -457,7 +457,7 @@
e.mobile as mobile,
e.enddate as dismissdate
from hrmresource e
where e.status not in (7)
where e.status in (4,5,6)
AND e.enddate >= #{dismissDate}
</select>