|
@@ -60,6 +60,11 @@ public class UserBean implements JsonSerializable {
|
|
|
*/
|
|
|
private List<RoleBean> roleList;
|
|
|
|
|
|
+ /**
|
|
|
+ * 联系方式
|
|
|
+ */
|
|
|
+ private String phoneNumber;
|
|
|
+
|
|
|
public Long getUserId() {
|
|
|
return userId;
|
|
|
}
|
|
@@ -132,4 +137,11 @@ public class UserBean implements JsonSerializable {
|
|
|
this.roleList = roleList;
|
|
|
}
|
|
|
|
|
|
+ public String getPhoneNumber() {
|
|
|
+ return phoneNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPhoneNumber(String phoneNumber) {
|
|
|
+ this.phoneNumber = phoneNumber;
|
|
|
+ }
|
|
|
}
|