Commit d3ba2bcaba089442764532f0bf94f34c5e70a35e
1 parent
64e07c6868
Exists in
master
and in
1 other branch
user对象 增加个人简介字段
Showing 1 changed file with 6 additions and 0 deletions
talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsUser.java
View file @
d3ba2bc
| ... | ... | @@ -102,6 +102,12 @@ |
| 102 | 102 | @TableField(value = "updated_time",update = "now()") |
| 103 | 103 | private Date updatedTime; |
| 104 | 104 | |
| 105 | + /** | |
| 106 | + * 个人简介 | |
| 107 | + */ | |
| 108 | + @TableField(value = "intro") | |
| 109 | + private String intro; | |
| 110 | + | |
| 105 | 111 | @TableField(exist = false) |
| 106 | 112 | private static final long serialVersionUID = 1L; |
| 107 | 113 |