UserLogin.java 2.3 KB

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