package com.mingsoft.job.entity;

import java.util.Date;

import com.mingsoft.base.entity.BaseEntity;

public class ResumeEntity extends BaseEntity {
	private Integer resumeid; // NOT NULL AUTO_INCREMENT COMMENT '简历id自增长',
	private Integer peopleId; // DEFAULT NULL COMMENT '求职者id，people表id',
	private Integer sex; // DEFAULT NULL COMMENT '性别 0女 1男',
	private String email; // DEFAULT NULL,
	private String pic; // DEFAULT NULL COMMENT '头像照片存储路径',
	private String nation; // DEFAULT NULL COMMENT '国籍',
	private String phone; // DEFAULT NULL COMMENT '电话',
	private String idcard; // DEFAULT NULL,
	private Integer workyear; // DEFAULT NULL COMMENT '工作年限',
	private String education; // DEFAULT NULL COMMENT '最高学历',
	private Date birthday; // DEFAULT NULL COMMENT '生日',
	private String marriageStatus; // DEFAULT NULL COMMENT '婚姻状况',
	private String city; // DEFAULT NULL,所在城市
	private Date createdatetime;
	private Date updatedatetime; // COMMENT '更新时间';
	private String status;
	private String certype;//证件类型
	private String name;
	private String filepath;
	private String school;
	private String major;

	public Integer getResumeid() {
		return resumeid;
	}

	public void setResumeid(Integer resumeid) {
		this.resumeid = resumeid;
	}


	public Integer getSex() {
		return sex;
	}

	public void setSex(Integer sex) {
		this.sex = sex;
	}

	public String getEmail() {
		return email;
	}

	public void setEmail(String email) {
		this.email = email;
	}

	public String getPic() {
		return pic;
	}

	public void setPic(String pic) {
		this.pic = pic;
	}

	public String getNation() {
		return nation;
	}

	public void setNation(String nation) {
		this.nation = nation;
	}

	public String getPhone() {
		return phone;
	}

	public void setPhone(String phone) {
		this.phone = phone;
	}

	public String getIdcard() {
		return idcard;
	}

	public void setIdcard(String idcard) {
		this.idcard = idcard;
	}

	public Integer getWorkyear() {
		return workyear;
	}

	public void setWorkyear(Integer workyear) {
		this.workyear = workyear;
	}

	public String getEducation() {
		return education;
	}

	public void setEducation(String education) {
		this.education = education;
	}

	public Date getBirthday() {
		return birthday;
	}

	public void setBirthday(Date birthday) {
		this.birthday = birthday;
	}

	public String getCity() {
		return city;
	}

	public void setCity(String city) {
		this.city = city;
	}

	public Date getCreatedatetime() {
		return createdatetime;
	}

	public void setCreatedatetime(Date createdatetime) {
		this.createdatetime = createdatetime;
	}

	public Date getUpdatedatetime() {
		return updatedatetime;
	}

	public void setUpdatedatetime(Date updatedatetime) {
		this.updatedatetime = updatedatetime;
	}

	public String getStatus() {
		return status;
	}

	public void setStatus(String status) {
		this.status = status;
	}

	public Integer getPeopleId() {
		return peopleId;
	}

	public void setPeopleId(Integer peopleId) {
		this.peopleId = peopleId;
	}

	public String getCertype() {
		return certype;
	}

	public void setCertype(String certype) {
		this.certype = certype;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getMarriageStatus() {
		return marriageStatus;
	}

	public void setMarriageStatus(String marriageStatus) {
		this.marriageStatus = marriageStatus;
	}

	public String getFilepath() {
		return filepath;
	}

	public void setFilepath(String filepath) {
		this.filepath = filepath;
	}

	public String getSchool() {
		return school;
	}

	public void setSchool(String school) {
		this.school = school;
	}

	public String getMajor() {
		return major;
	}

	public void setMajor(String major) {
		this.major = major;
	}


}
