用户添加是否流动人员标志
parent
2bc55c2e2f
commit
d028887a3c
|
|
@ -126,5 +126,9 @@ public class UserAddCmd extends Command {
|
||||||
@ApiModelProperty(value = "岗位名称")
|
@ApiModelProperty(value = "岗位名称")
|
||||||
private String postName;
|
private String postName;
|
||||||
|
|
||||||
|
// 入职状态
|
||||||
|
@ApiModelProperty(value = "是否流动人员,1-流动,0-固定人员")
|
||||||
|
private Integer flowFlag;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -87,5 +87,6 @@ public class UserUpdateCmd extends Command {
|
||||||
private String politicalAffiliation;
|
private String politicalAffiliation;
|
||||||
@ApiModelProperty(value = "政治面貌名称", name = "politicalAffiliationName")
|
@ApiModelProperty(value = "政治面貌名称", name = "politicalAffiliationName")
|
||||||
private String politicalAffiliationName;
|
private String politicalAffiliationName;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -132,5 +132,9 @@ public class UserXgfAddCmd extends Command {
|
||||||
private String departmentName;
|
private String departmentName;
|
||||||
@ApiModelProperty(value = "岗位名称")
|
@ApiModelProperty(value = "岗位名称")
|
||||||
private String postName;
|
private String postName;
|
||||||
|
|
||||||
|
// 入职状态
|
||||||
|
@ApiModelProperty(value = "是否流动人员,1-流动,0-固定人员")
|
||||||
|
private Integer flowFlag;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -171,7 +171,9 @@ public class UserCO extends ClientObject {
|
||||||
// 入职状态
|
// 入职状态
|
||||||
@ApiModelProperty(value = "入职状态 1-在职 0-离职")
|
@ApiModelProperty(value = "入职状态 1-在职 0-离职")
|
||||||
private Integer employmentFlag;
|
private Integer employmentFlag;
|
||||||
|
// 入职状态
|
||||||
|
@ApiModelProperty(value = "是否流动人员,1-流动,0-固定人员")
|
||||||
|
private Integer flowFlag;
|
||||||
|
|
||||||
// 年龄
|
// 年龄
|
||||||
@ApiModelProperty(value = "年龄")
|
@ApiModelProperty(value = "年龄")
|
||||||
|
|
|
||||||
|
|
@ -135,6 +135,8 @@ public class UserE extends BaseE {
|
||||||
private String newPassword;
|
private String newPassword;
|
||||||
// 入职状态
|
// 入职状态
|
||||||
private Integer employmentFlag;
|
private Integer employmentFlag;
|
||||||
|
// 入职状态
|
||||||
|
private Integer flowFlag;
|
||||||
// 父级租户id
|
// 父级租户id
|
||||||
private final Long parentTenantId = 1989259383784415232L;
|
private final Long parentTenantId = 1989259383784415232L;
|
||||||
// 默认密码
|
// 默认密码
|
||||||
|
|
|
||||||
|
|
@ -125,6 +125,9 @@ public class UserDO extends BaseDO {
|
||||||
// 入职状态
|
// 入职状态
|
||||||
@ApiModelProperty(value = "入职状态")
|
@ApiModelProperty(value = "入职状态")
|
||||||
private Integer employmentFlag;
|
private Integer employmentFlag;
|
||||||
|
// 入职状态
|
||||||
|
@ApiModelProperty(value = "是否流动人员,1-流动,0-固定人员")
|
||||||
|
private Integer flowFlag;
|
||||||
|
|
||||||
|
|
||||||
//密码
|
//密码
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue