UserLogin.java 2.3 KB

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