|
@@ -3,6 +3,8 @@ package com.ruoyi.common.core.domain.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.ruoyi.common.annotation.Excel;
|
|
import com.ruoyi.common.annotation.Excel;
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
+import jdk.nashorn.internal.objects.annotations.Getter;
|
|
|
|
+import jdk.nashorn.internal.objects.annotations.Setter;
|
|
|
|
|
|
@TableName("jnb_wx_user")
|
|
@TableName("jnb_wx_user")
|
|
public class WxUser extends BaseEntity {
|
|
public class WxUser extends BaseEntity {
|
|
@@ -29,6 +31,9 @@ public class WxUser extends BaseEntity {
|
|
@Excel(name = "手机号" )
|
|
@Excel(name = "手机号" )
|
|
private String phone;
|
|
private String phone;
|
|
|
|
|
|
|
|
+ /** 头像(头像) */
|
|
|
|
+ private String headImg;
|
|
|
|
+
|
|
public Long getId() {
|
|
public Long getId() {
|
|
return id;
|
|
return id;
|
|
}
|
|
}
|
|
@@ -76,4 +81,12 @@ public class WxUser extends BaseEntity {
|
|
public void setPhone(String phone) {
|
|
public void setPhone(String phone) {
|
|
this.phone = phone;
|
|
this.phone = phone;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public String getHeadImg() {
|
|
|
|
+ return headImg;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setHeadImg(String headImg) {
|
|
|
|
+ this.headImg = headImg;
|
|
|
|
+ }
|
|
}
|
|
}
|