|
@@ -92,6 +92,11 @@ public class User implements Serializable {
|
|
*/
|
|
*/
|
|
private Integer type;
|
|
private Integer type;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 认证状态
|
|
|
|
+ */
|
|
|
|
+ private Integer authStatus;
|
|
|
|
+
|
|
|
|
|
|
public Long getId() {
|
|
public Long getId() {
|
|
return id;
|
|
return id;
|
|
@@ -205,6 +210,13 @@ public class User implements Serializable {
|
|
this.type = type;
|
|
this.type = type;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Integer getAuthStatus() {
|
|
|
|
+ return authStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setAuthStatus(Integer authStatus) {
|
|
|
|
+ this.authStatus = authStatus;
|
|
|
|
+ }
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public String toString() {
|
|
public String toString() {
|
|
@@ -223,6 +235,7 @@ public class User implements Serializable {
|
|
", position='" + position + '\'' +
|
|
", position='" + position + '\'' +
|
|
", phone='" + phone + '\'' +
|
|
", phone='" + phone + '\'' +
|
|
", type=" + type +
|
|
", type=" + type +
|
|
|
|
+ ", authStatus=" + authStatus +
|
|
'}';
|
|
'}';
|
|
}
|
|
}
|
|
}
|
|
}
|