| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package com.zhentao.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.Date;
- @TableName(value = "user_profile")
- @Data
- public class UserProfile implements Serializable {
- @TableId(type = IdType.AUTO)
- private Integer profileId;
- private Integer userId;
- private Integer house;
- private Integer car;
- private Integer height;
- private Integer weight;
- private String star;
- private String animal;
- private String realName;
- private String idCard;
- private Integer educationLevel;
- private Object hobby;
- private String schoolName;
- private String company;
- private Integer salaryRange;
- private String jobTitle;
- private Integer maritalStatus;
- private Integer isRealNameVerified;
- private Integer isEducationVerified;
- private Integer isWorkVerified;
- private Integer isMaritalVerified;
- private Date verifiedAt;
- private Integer provinceId;
- private Integer cityId;
- private Integer areaId;
- private Integer privacySalary;
- private Integer privacyPhone;
- private Integer authenticityScore;
-
- private static final long serialVersionUID = 1L;
- }
|