123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- package com.hz.employmentsite.vo.jobUserManager;
- import com.hz.employmentsite.util.datarange.annotations.InstitutionID;
- import com.hz.employmentsite.util.datarange.annotations.JobUserID;
- import com.hz.employmentsite.util.datarange.annotations.RegionID;
- import com.hz.employmentsite.util.datarange.annotations.SiteID;
- import lombok.Data;
- import java.util.Date;
- import java.util.HashMap;
- import java.util.List;
- @Data
- public class JobUserVo {
- @JobUserID
- private String jobUserID;
- @SiteID
- private String siteID;
- @InstitutionID
- public String institutionID;
- private String identityNumber;
- private String name;
- private String pyName;
- private String engName;
- private Integer sex;
- private String nation;
- private Integer politicsStatusID;
- private String politicsStatusName;
- private String birthPlace;
- private Date birthDay;
- private Integer age;
- private Integer familyNatureID;
- private String familyNatureName;
- private Integer cultureRank;
- private Integer healthID;
- private String healthName;
- private Integer bloodTypeID;
- private String bloodTypeName;
- private String height;
- private String vision;
- private String weight;
- private Integer maritalStatusID;
- private String MaritalStatusName;
- private String provinceCode;
- @RegionID
- private String regionCode;
- private String regionName;
- private String streetCode;
- private String streetName;
- private String userName;
- private String userMobile;
- private String address;
- private String familyAddress;
- private String postalCode;
- private String email;
- private String hobby;
- private Integer jobStatusID;
- private Integer keyPersonTypeID;
- private String personalSkills;
- private String createUserID;
- private Date createTime;
- private String modifyUserID;
- private Date modifyTime;
- public String openId;
- public String genderName;
- public String cultureName;
- public String siteName;
- public String jobStatusName;
- public String keyTypeName;
- public List<HashMap<String, Object>> jobEducation;
- public List<HashMap<String, Object>> jobExperience;
- /*已推荐岗位个数*/
- public Integer recommendedCount;
- private String socialSecurityCard;
- private String finishSchool;
- private String profession;
- private String nativePlace;
- private Integer isFullTime;
- private String isFullTimeName;
- private String occupationalCategory;
- private String occupationalCategoryName;
- private Integer occupationalLevel;
- private String occupationalLevelName;
- public String loginUserID;
- }
|