员工管理-审核管理,审核及修改状态调整
This commit is contained in:
parent
c714374b0f
commit
532cf35f22
|
|
@ -97,8 +97,10 @@ public class EmployeesApplyMQDto implements Serializable {
|
||||||
private String orgCode;
|
private String orgCode;
|
||||||
/**操作时间*/
|
/**操作时间*/
|
||||||
private Date opeTime;
|
private Date opeTime;
|
||||||
|
/**申请类型 0被邀请 1主动申请 2变更*/
|
||||||
|
private String applyType;
|
||||||
/**修改状态 1修改申请中 2通过 3驳回 */
|
/**修改状态 1修改申请中 2通过 3驳回 */
|
||||||
private java.lang.String modifyStatus;
|
private String modifyStatus;
|
||||||
|
|
||||||
/**身份证有效开始日期 */
|
/**身份证有效开始日期 */
|
||||||
private Date startTime;
|
private Date startTime;
|
||||||
|
|
|
||||||
|
|
@ -365,8 +365,10 @@ public class EmployeesMQListener {
|
||||||
employeesApply.setStatus("1");
|
employeesApply.setStatus("1");
|
||||||
employeesApply.setDelFlag("0");
|
employeesApply.setDelFlag("0");
|
||||||
employeesApply.setIzHistory("N");
|
employeesApply.setIzHistory("N");
|
||||||
employeesApply.setApplyType("2");
|
// employeesApply.setApplyType("2");
|
||||||
employeesApply.setModifyStatus("1");
|
// employeesApply.setModifyStatus("1");
|
||||||
|
employeesApply.setApplyType(dto.getApplyType());
|
||||||
|
employeesApply.setModifyStatus(dto.getModifyStatus());
|
||||||
|
|
||||||
//资源文件拉完图片统一存储,不然页面有路径没资源可显示
|
//资源文件拉完图片统一存储,不然页面有路径没资源可显示
|
||||||
String idCardPositive = employeesApply.getIdCardPositive();
|
String idCardPositive = employeesApply.getIdCardPositive();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue