This commit is contained in:
chenyanchang
2026-06-17 18:07:10 +08:00
4 changed files with 12 additions and 5 deletions

View File

@@ -47,6 +47,9 @@ public class EmployeeConfirmServiceImpl implements EmployeeConfirmService {
}
Job job=jobMapper.getJobInfo(employeeConfirm.getJobId());
//添加消息
//获取申请消息
JobApply jobApply=jobApplyMapper.selectById(employeeConfirm.getApplyId());
employeeConfirm.setUserId(jobApply!=null?jobApply.getUserId():null);
Notice notice=NoticeUtils.createLytzNotice(employeeConfirm,job);
noticeMapper.insert(notice);
return t;