Commit f295f1b8 authored by hezhen's avatar hezhen

123

parent 307c08de
......@@ -74,4 +74,8 @@ public class AppUserDetail {
@ApiModelProperty(value = "邀请人账号:")
@Column(name = "inviter_account")
private Integer inviterAccount;
@ApiModelProperty(value = "1-新人用户;2-未激活;3-激活")
@Column(name = "state")
private Integer state;
}
......@@ -63,7 +63,9 @@ public class AppUserDTO {
private String code;
@ApiModelProperty(value = "邀请人id:")
private String inviterAccount;
private Integer inviterAccount;
@ApiModelProperty(value = "1-新人用户;2-未激活;3-激活:")
private Integer state;
private Integer imUserid;
private String wxOpenid;
private String unionid;
......
......@@ -38,4 +38,5 @@ public class AppUserInfoVo {
private Long updatetime;
private Integer isdel;
}
......@@ -80,6 +80,9 @@ public class AppUserVo {
private String code;
@ApiModelProperty(value = "邀请人id:")
private String inviterAccount;
private Integer inviterAccount;
@ApiModelProperty(value = "1-新人用户;2-未激活;3-激活:")
private Integer state;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment