员工入职审批通过修改员工信息

This commit is contained in:
曹磊 2026-02-11 17:29:31 +08:00
parent bb31c54cc8
commit f0f4bff118
3 changed files with 12 additions and 0 deletions

View File

@ -128,6 +128,7 @@ public class NuEmployeesAdvisoryInfoServiceImpl extends ServiceImpl<NuEmployeesA
mqdto.setEmployeeId(dto.getId()); mqdto.setEmployeeId(dto.getId());
mqdto.setStartTime(dto.getStartTime()); mqdto.setStartTime(dto.getStartTime());
mqdto.setEndTime(dto.getEndTime()); mqdto.setEndTime(dto.getEndTime());
mqdto.setPoliticalAppearance(dto.getPoliticalAppearance());
mqdto.setApplyType(emAdd.getApplyType()); mqdto.setApplyType(emAdd.getApplyType());
mqdto.setModifyStatus(emAdd.getModifyStatus()); mqdto.setModifyStatus(emAdd.getModifyStatus());
rabbitMQUtil.sendToExchange("hldy.employee", dto.getOrgCode() + ".employee.infoUpdate.audit", mqdto); rabbitMQUtil.sendToExchange("hldy.employee", dto.getOrgCode() + ".employee.infoUpdate.audit", mqdto);

View File

@ -73,6 +73,8 @@ public class EmployeesMQListener {
employeesAd.setBirthDate(dto.getBirthDate()); employeesAd.setBirthDate(dto.getBirthDate());
employeesAd.setIdCard(dto.getIdCard()); employeesAd.setIdCard(dto.getIdCard());
employeesAd.setIdCardAddress(dto.getIdCardAddress()); employeesAd.setIdCardAddress(dto.getIdCardAddress());
employeesAd.setStartTime(dto.getStartTime());
employeesAd.setEndTime(dto.getEndTime());
employeesAd.setIssuingAuthority(dto.getIssuingAuthority()); employeesAd.setIssuingAuthority(dto.getIssuingAuthority());
employeesAd.setCardZmPath(dto.getCardZmPath()); employeesAd.setCardZmPath(dto.getCardZmPath());
employeesAd.setCardFmPath(dto.getCardFmPath()); employeesAd.setCardFmPath(dto.getCardFmPath());

View File

@ -94,4 +94,13 @@ public class EmployeesStatusMQDto implements Serializable {
private String noCrimeCertificate; private String noCrimeCertificate;
/**现住址*/ /**现住址*/
private String currentAddress; private String currentAddress;
/**有效开始日期*/
@JsonFormat(timezone = "GMT+8",pattern = "yyyy.MM.dd")
@DateTimeFormat(pattern="yyyy.MM.dd")
private Date startTime;
/**有效结束日期*/
@JsonFormat(timezone = "GMT+8",pattern = "yyyy.MM.dd")
@DateTimeFormat(pattern="yyyy.MM.dd")
private Date endTime;
} }