|
@@ -98,6 +98,11 @@ public class User implements Serializable {
|
|
private Integer authStatus;
|
|
private Integer authStatus;
|
|
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 认证通过时间
|
|
|
|
+ */
|
|
|
|
+ private Date passauthTime;
|
|
|
|
+
|
|
public Long getId() {
|
|
public Long getId() {
|
|
return id;
|
|
return id;
|
|
}
|
|
}
|
|
@@ -218,6 +223,15 @@ public class User implements Serializable {
|
|
this.authStatus = authStatus;
|
|
this.authStatus = authStatus;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Date getPassauthTime() {
|
|
|
|
+ return passauthTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPassauthTime(Date passauthTime) {
|
|
|
|
+ this.passauthTime = passauthTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public String toString() {
|
|
public String toString() {
|
|
return "User{" +
|
|
return "User{" +
|
|
@@ -236,6 +250,7 @@ public class User implements Serializable {
|
|
", phone='" + phone + '\'' +
|
|
", phone='" + phone + '\'' +
|
|
", type=" + type +
|
|
", type=" + type +
|
|
", authStatus=" + authStatus +
|
|
", authStatus=" + authStatus +
|
|
|
|
+ ", passauthTime=" + passauthTime +
|
|
'}';
|
|
'}';
|
|
}
|
|
}
|
|
}
|
|
}
|