修改错误字段
parent
0a306f0e57
commit
0a4cf022df
|
|
@ -85,10 +85,10 @@ public class UserAddCmd extends Command {
|
|||
|
||||
@ApiModelProperty(value = "户口所在地", name = "locationAddress")
|
||||
private String locationAddress;
|
||||
@ApiModelProperty(value = "职级", name = "rank_level")
|
||||
private String rank_level;
|
||||
@ApiModelProperty(value = "职级名称", name = "rank_level_name")
|
||||
private String rank_level_name;
|
||||
@ApiModelProperty(value = "职级", name = "rankLevel")
|
||||
private String rankLevel;
|
||||
@ApiModelProperty(value = "职级名称", name = "rankLevelName")
|
||||
private String rankLevelName;
|
||||
|
||||
// TODO 待确认企业端和监管端是否必填
|
||||
@ApiModelProperty(value = "人员在部门中的排序", name = "sort")
|
||||
|
|
|
|||
|
|
@ -63,10 +63,10 @@ public class UserUpdateCmd extends Command {
|
|||
private String locationAddress;
|
||||
@ApiModelProperty(value = "手机号", name = "phone")
|
||||
private String phone;
|
||||
@ApiModelProperty(value = "职级", name = "rank_level")
|
||||
private String rank_level;
|
||||
@ApiModelProperty(value = "职级名称", name = "rank_level_name")
|
||||
private String rank_level_name;
|
||||
@ApiModelProperty(value = "职级", name = "rankLevel")
|
||||
private String rankLevel;
|
||||
@ApiModelProperty(value = "职级名称", name = "rankLevelName")
|
||||
private String rankLevelName;
|
||||
@ApiModelProperty(value = "人员在部门中的排序", name = "sort")
|
||||
private Integer sort;
|
||||
@ApiModelProperty(value = "描述", name = "remarks")
|
||||
|
|
|
|||
|
|
@ -88,10 +88,10 @@ public class UserXgfAddCmd extends Command {
|
|||
@ApiModelProperty(value = "户口所在地", name = "locationAddress", required = true)
|
||||
@NotEmpty(message = "户口所在地不能为空")
|
||||
private String locationAddress;
|
||||
@ApiModelProperty(value = "职级", name = "rank_level")
|
||||
private String rank_level;
|
||||
@ApiModelProperty(value = "职级名称", name = "rank_level_name")
|
||||
private String rank_level_name;
|
||||
@ApiModelProperty(value = "职级", name = "rankLevel")
|
||||
private String rankLevel;
|
||||
@ApiModelProperty(value = "职级名称", name = "rankLevelName")
|
||||
private String rankLevelName;
|
||||
|
||||
@ApiModelProperty(value = "人员在部门中的排序", name = "sort")
|
||||
private Integer sort;
|
||||
|
|
|
|||
|
|
@ -94,9 +94,9 @@ public class UserCO extends ClientObject {
|
|||
private String locationAddress;
|
||||
|
||||
@ApiModelProperty(value = "职级")
|
||||
private String rank_level;
|
||||
private String rankLevel;
|
||||
@ApiModelProperty(value = "职级名称")
|
||||
private String rank_level_name;
|
||||
private String rankLevelName;
|
||||
@ApiModelProperty(value = "手机号")
|
||||
private String phone;
|
||||
//人员在部门中的排序
|
||||
|
|
|
|||
|
|
@ -59,10 +59,10 @@ public class UserE extends BaseE {
|
|||
//户口所在地
|
||||
private String locationAddress;
|
||||
|
||||
private String rank_level;
|
||||
private String rankLevel;
|
||||
private String phone;
|
||||
|
||||
private String rank_level_name;
|
||||
private String rankLevelName;
|
||||
//人员在部门中的排序
|
||||
private Integer sort;
|
||||
//乐观锁
|
||||
|
|
|
|||
|
|
@ -89,9 +89,9 @@ public class UserDO extends BaseDO {
|
|||
@ApiModelProperty(value = "户口所在地")
|
||||
private String locationAddress;
|
||||
@ApiModelProperty(value = "职级")
|
||||
private String rank_level;
|
||||
private String rankLevel;
|
||||
@ApiModelProperty(value = "职级名称")
|
||||
private String rank_level_name;
|
||||
private String rankLevelName;
|
||||
@ApiModelProperty(value = "手机号")
|
||||
private String phone;
|
||||
//人员在部门中的排序
|
||||
|
|
|
|||
Loading…
Reference in New Issue