|
@@ -6,6 +6,7 @@ import lombok.NoArgsConstructor;
|
|
import lombok.experimental.SuperBuilder;
|
|
import lombok.experimental.SuperBuilder;
|
|
|
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
|
+import java.util.Date;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -43,4 +44,24 @@ public class UserVO implements Serializable {
|
|
* 角色主键列表
|
|
* 角色主键列表
|
|
*/
|
|
*/
|
|
private List<Long> roleIds;
|
|
private List<Long> roleIds;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 性别
|
|
|
|
+ */
|
|
|
|
+ private String gender;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 常用地
|
|
|
|
+ */
|
|
|
|
+ private String city;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 个人介绍
|
|
|
|
+ */
|
|
|
|
+ private String introduction;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 生日
|
|
|
|
+ */
|
|
|
|
+ private Date birthday;
|
|
}
|
|
}
|