用户增加是否认证

This commit is contained in:
19173159168
2025-08-16 22:03:48 +08:00
parent 60c05768b4
commit 9565f5f2cd
3 changed files with 42 additions and 12 deletions

View File

@ -34,23 +34,27 @@ public class ZcBaseUser extends BaseEntity
@Excel(name = "手机号")
private String phoneNumber;
/** 角色id */
@Excel(name = "租车用户",dictType = "sys_yes_no")
private Long roleId;
@Excel(name = "门店用户",dictType = "sys_yes_no")
private Long isStore;
/** 昵称 */
@Excel(name = "昵称")
private String nickName;
/** 微信小程序 openid */
@Excel(name = "微信小程序 openid")
@Excel(name = "微信小程序")
private String wechatOpenid;
/** 支付宝小程序 userid */
@Excel(name = "支付宝小程序 userid")
@Excel(name = "支付宝小程序")
private String alipayUserid;
/** 角色id */
@Excel(name = "租车用户",dictType = "key_yes_no")
private Long roleId;
@Excel(name = "门店用户",dictType = "key_yes_no")
private Long isStore;
@Excel(name = "是否认证",dictType = "key_base_user_authed")
private Long authed;
/** 删除标志0代表存在 2代表删除 */
private String delFlag;
@ -162,6 +166,14 @@ public class ZcBaseUser extends BaseEntity
return delFlag;
}
public Long getAuthed() {
return authed;
}
public void setAuthed(Long authed) {
this.authed = authed;
}
public List<ZcBaseUserStore> getZcBaseUserStoreList()
{
return zcBaseUserStoreList;