优化同步离职日期
This commit is contained in:
parent
4682866674
commit
e7c46bc5e8
|
|
@ -125,7 +125,7 @@ public interface EmployMapper {
|
|||
DeptInfo getDeptInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 获取大于离职日期的人员信息
|
||||
* 获取大于离职日期的 离职、退休、解聘人员信息
|
||||
* @return
|
||||
*/
|
||||
List<DataCollectionEmployee> listByDismissDate(String dismissDate);
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue