package cn.iocoder.yudao.module.hrm.service.remind;
|
|
/**
|
* HRM 证书/合同到期提醒 Service 接口
|
*
|
* <p>对即将到期的证书资质、劳动合同向持证/在岗员工发送站内信提醒,
|
* 满足电力行业安全培训合格证、特种作业证书、从业资质等合规续期要求。
|
*
|
* @author 超级管理员
|
*/
|
public interface HrmExpiryRemindService {
|
|
/**
|
* 发送证书资质到期提醒(即将到期 [today, today+N])
|
*/
|
void sendCertificateExpireRemind();
|
|
/**
|
* 发送劳动合同到期提醒(即将到期 [today, today+N])
|
*/
|
void sendContractExpireRemind();
|
|
/**
|
* 发送全部到期提醒(先证书后合同),供每日定时任务调用
|
*/
|
void sendAll();
|
|
}
|