| 3 | import java.util.Date; |
| 4 | |
| 5 | public class UserEntity { |
| 6 | private Long userId; |
| 7 | |
| 8 | private String loginName; |
| 9 | |
| 10 | private String passwordMd5; |
| 11 | |
| 12 | private String headImgUrl; |
| 13 | |
| 14 | private String introduce; |
| 15 | |
| 16 | private String profession; |
| 17 | |
| 18 | private String address; |
| 19 | |
| 20 | private Date createTime; |
| 21 | |
| 22 | public Long getUserId() { |
| 23 | return userId; |
| 24 | } |
| 25 | |
| 26 | public void setUserId(Long userId) { |
| 27 | this.userId = userId; |
| 28 | } |
| 29 | |
| 30 | public String getLoginName() { |
| 31 | return loginName; |
| 32 | } |
| 33 | |
| 34 | public void setLoginName(String loginName) { |
| 35 | this.loginName = loginName == null ? null : loginName.trim(); |
| 36 | } |
| 37 | |
| 38 | public String getPasswordMd5() { |
| 39 | return passwordMd5; |
| 40 | } |
| 41 | |
| 42 | public void setPasswordMd5(String passwordMd5) { |
| 43 | this.passwordMd5 = passwordMd5 == null ? null : passwordMd5.trim(); |
| 44 | } |
| 45 | |
| 46 | public String getHeadImgUrl() { |
| 47 | return headImgUrl; |
| 48 | } |
| 49 | |
| 50 | public void setHeadImgUrl(String headImgUrl) { |
| 51 | this.headImgUrl = headImgUrl == null ? null : headImgUrl.trim(); |
| 52 | } |
| 53 | |
| 54 | public String getIntroduce() { |
| 55 | return introduce; |
| 56 | } |
| 57 | |
| 58 | public void setIntroduce(String introduce) { |
| 59 | this.introduce = introduce == null ? null : introduce.trim(); |
| 60 | } |
| 61 | |
| 62 | public String getProfession() { |
nothing calls this directly
no outgoing calls
no test coverage detected