小程序获取员工信息变更信息接口字段调整
This commit is contained in:
parent
abef886edf
commit
f69418ca1d
|
|
@ -281,6 +281,10 @@ public class NuEmployeesAdvisoryInfo implements Serializable {
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String modifyState;
|
private String modifyState;
|
||||||
|
|
||||||
|
//信息修改状态 空:没提交过修改 1修改申请中 2通过 3驳回*/
|
||||||
|
@TableField(exist = false)
|
||||||
|
private String applyStatus;
|
||||||
|
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String auditContent;
|
private String auditContent;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
<select id="queryEmployeeInfo" resultType="com.nu.modules.employees.entity.NuEmployeesAdvisoryInfo">
|
<select id="queryEmployeeInfo" resultType="com.nu.modules.employees.entity.NuEmployeesAdvisoryInfo">
|
||||||
SELECT
|
SELECT
|
||||||
adinfo.*,
|
adinfo.*,
|
||||||
eo.modify_status AS modifyState,
|
eo.modify_status AS applyStatus,
|
||||||
eo.audit_content AS auditContent
|
eo.audit_content AS auditContent
|
||||||
FROM nu_biz_employees_advisory_info adinfo
|
FROM nu_biz_employees_advisory_info adinfo
|
||||||
LEFT JOIN nu_biz_employees_org eo
|
LEFT JOIN nu_biz_employees_org eo
|
||||||
|
|
|
||||||
|
|
@ -131,6 +131,7 @@ public class NuEmployeesAdvisoryInfoServiceImpl extends ServiceImpl<NuEmployeesA
|
||||||
.map(item -> {
|
.map(item -> {
|
||||||
EmployeesAdvisoryInfoEntity entity = new EmployeesAdvisoryInfoEntity();
|
EmployeesAdvisoryInfoEntity entity = new EmployeesAdvisoryInfoEntity();
|
||||||
BeanUtils.copyProperties(item, entity);
|
BeanUtils.copyProperties(item, entity);
|
||||||
|
|
||||||
return entity;
|
return entity;
|
||||||
})
|
})
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
|
|
|
||||||
|
|
@ -127,6 +127,9 @@ public class EmployeesAdvisoryInfoEntity implements Serializable {
|
||||||
//信息修改状态 空:没提交过修改 1修改申请中 2通过 3驳回*/
|
//信息修改状态 空:没提交过修改 1修改申请中 2通过 3驳回*/
|
||||||
private String modifyState;
|
private String modifyState;
|
||||||
|
|
||||||
|
//信息修改状态 空:没提交过修改 1修改申请中 2通过 3驳回*/
|
||||||
|
private String applyStatus;
|
||||||
|
|
||||||
private String auditContent;
|
private String auditContent;
|
||||||
/**
|
/**
|
||||||
* 现住址
|
* 现住址
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue