UserLogin.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. package com.zhentao.user.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. import lombok.Data;
  9. /**
  10. * 用户
  11. * @TableName user_login
  12. */
  13. @TableName(value ="user_login")
  14. @Data
  15. public class UserLogin implements Serializable {
  16. /**
  17. * 用户ID
  18. */
  19. @TableId
  20. private Long id;
  21. /**
  22. * 账号
  23. */
  24. private String userUsername;
  25. /**
  26. * 密码
  27. */
  28. private String userPassword;
  29. /**
  30. * 盐
  31. */
  32. private String salt;
  33. /**
  34. * 用户昵称
  35. */
  36. private String nickName;
  37. /**
  38. * 头像图片
  39. */
  40. private String avatar;
  41. /**
  42. * 用户名称
  43. */
  44. private String userName;
  45. /**
  46. * 性别1男2女3未知
  47. */
  48. private Integer gender;
  49. /**
  50. * 个性签名
  51. */
  52. private String userIntro;
  53. /**
  54. * 手机号
  55. */
  56. private String userMobile;
  57. /**
  58. * 身份证号
  59. */
  60. private String idenNo;
  61. /**
  62. * 等级描述
  63. */
  64. private String gradeDesc;
  65. /**
  66. * 生日
  67. */
  68. private Date birthDay;
  69. /**
  70. * 月
  71. */
  72. private Integer birthMonth;
  73. /**
  74. * 日
  75. */
  76. private Integer days;
  77. /**
  78. * 标签列表
  79. */
  80. private String labelList;
  81. /**
  82. * 状态1正常0锁定
  83. */
  84. private Integer status;
  85. /**
  86. * 备注
  87. */
  88. private String remark;
  89. /**
  90. * 创建时间
  91. */
  92. private Date createdTime;
  93. /**
  94. * 更新人
  95. */
  96. private String updatedBy;
  97. /**
  98. * 更新时间
  99. */
  100. private Date updatedTime;
  101. /**
  102. *
  103. */
  104. private String openId;
  105. /**
  106. *
  107. */
  108. private String sessionKey;
  109. /**
  110. *
  111. */
  112. private String uniId;
  113. @TableField(exist = false)
  114. private static final long serialVersionUID = 1L;
  115. }