All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eleme.openapi.sdk.api.entity.recruitment.BaseInfo Maven / Gradle / Ivy

The newest version!
package eleme.openapi.sdk.api.entity.recruitment;

import eleme.openapi.sdk.api.enumeration.recruitment.*;
import eleme.openapi.sdk.api.entity.recruitment.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;

public class BaseInfo{

    /**
     * 用户头像链接
     */
    private String picture;
    public String getPicture() {
        return picture;
    }
    public void setPicture(String picture) {
        this.picture = picture;
    }
    
    /**
     * 姓名
     */
    private String name;
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    
    /**
     * 性别
     */
    private SexEnum sex;
    public SexEnum getSex() {
        return sex;
    }
    public void setSex(SexEnum sex) {
        this.sex = sex;
    }
    
    /**
     * 学历
     */
    private EducationDegreeEnum currentDegree;
    public EducationDegreeEnum getCurrentDegree() {
        return currentDegree;
    }
    public void setCurrentDegree(EducationDegreeEnum currentDegree) {
        this.currentDegree = currentDegree;
    }
    
    /**
     * 出生年月
     */
    private String birthDay;
    public String getBirthDay() {
        return birthDay;
    }
    public void setBirthDay(String birthDay) {
        this.birthDay = birthDay;
    }
    
    /**
     * 工作年限
     */
    private String workingLife;
    public String getWorkingLife() {
        return workingLife;
    }
    public void setWorkingLife(String workingLife) {
        this.workingLife = workingLife;
    }
    
    /**
     * 现居地
     */
    private String currentAddress;
    public String getCurrentAddress() {
        return currentAddress;
    }
    public void setCurrentAddress(String currentAddress) {
        this.currentAddress = currentAddress;
    }
    
    /**
     * 手机号码
     */
    private String phone;
    public String getPhone() {
        return phone;
    }
    public void setPhone(String phone) {
        this.phone = phone;
    }
    
    /**
     * 邮箱地址
     */
    private String email;
    public String getEmail() {
        return email;
    }
    public void setEmail(String email) {
        this.email = email;
    }
    
    /**
     * 微信号
     */
    private String weChat;
    public String getWeChat() {
        return weChat;
    }
    public void setWeChat(String weChat) {
        this.weChat = weChat;
    }
    
    /**
     * qq号
     */
    private String qq;
    public String getQq() {
        return qq;
    }
    public void setQq(String qq) {
        this.qq = qq;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy