UserProfile.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package com.zhentao.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Data;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. @TableName(value = "user_profile")
  9. @Data
  10. public class UserProfile implements Serializable {
  11. @TableId(type = IdType.AUTO)
  12. private Integer profileId;
  13. private Integer userId;
  14. private Integer house;
  15. private Integer car;
  16. private Integer height;
  17. private Integer weight;
  18. private String star;
  19. private String animal;
  20. private String realName;
  21. private String idCard;
  22. private Integer educationLevel;
  23. private Object hobby;
  24. private String schoolName;
  25. private String company;
  26. private Integer salaryRange;
  27. private String jobTitle;
  28. private Integer maritalStatus;
  29. private Integer isRealNameVerified;
  30. private Integer isEducationVerified;
  31. private Integer isWorkVerified;
  32. private Integer isMaritalVerified;
  33. private Date verifiedAt;
  34. private Integer provinceId;
  35. private Integer cityId;
  36. private Integer areaId;
  37. private Integer privacySalary;
  38. private Integer privacyPhone;
  39. private Integer authenticityScore;
  40. private static final long serialVersionUID = 1L;
  41. }