⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 recruiter.java

📁 一个关于物流的管理系统
💻 JAVA
字号:
package com.shunshi.ssh.entity;

import java.util.Date;

/**
 * Recruiter entity. @author MyEclipse Persistence Tools
 */

public class Recruiter implements java.io.Serializable {

	// Fields

	private Long id;
	private String jobName;
	private String jobIntro;
	private Integer number;
	private String sex;
	private String age;
	private String edu;
	private String workTrans;
	private String jobType;
	private String loca;
	private String pay;
	private String contact;
	private String telphone;
	private String fax;
	private String email;
	private String address;
	private String postcode;
	private Date endTime;
	private Long userId;
	private Date publishDate;
	private Integer state;

	// Constructors

	/** default constructor */
	public Recruiter() {
	}

	/** minimal constructor */
	public Recruiter(String jobName, String jobIntro, Integer number,
			String sex, String edu, String jobType, String pay, String contact,
			String telphone, String fax, String email, String address,
			String postcode, Date endTime, Long userId, Date publishDate,
			Integer state) {
		this.jobName = jobName;
		this.jobIntro = jobIntro;
		this.number = number;
		this.sex = sex;
		this.edu = edu;
		this.jobType = jobType;
		this.pay = pay;
		this.contact = contact;
		this.telphone = telphone;
		this.fax = fax;
		this.email = email;
		this.address = address;
		this.postcode = postcode;
		this.endTime = endTime;
		this.userId = userId;
		this.publishDate = publishDate;
		this.state = state;
	}

	/** full constructor */
	public Recruiter(String jobName, String jobIntro, Integer number,
			String sex, String age, String edu, String workTrans,
			String jobType, String loca, String pay, String contact,
			String telphone, String fax, String email, String address,
			String postcode, Date endTime, Long userId, Date publishDate,
			Integer state) {
		this.jobName = jobName;
		this.jobIntro = jobIntro;
		this.number = number;
		this.sex = sex;
		this.age = age;
		this.edu = edu;
		this.workTrans = workTrans;
		this.jobType = jobType;
		this.loca = loca;
		this.pay = pay;
		this.contact = contact;
		this.telphone = telphone;
		this.fax = fax;
		this.email = email;
		this.address = address;
		this.postcode = postcode;
		this.endTime = endTime;
		this.userId = userId;
		this.publishDate = publishDate;
		this.state = state;
	}

	// Property accessors

	public Long getId() {
		return this.id;
	}

	public void setId(Long id) {
		this.id = id;
	}

	public String getJobName() {
		return this.jobName;
	}

	public void setJobName(String jobName) {
		this.jobName = jobName;
	}

	public String getJobIntro() {
		return this.jobIntro;
	}

	public void setJobIntro(String jobIntro) {
		this.jobIntro = jobIntro;
	}

	public Integer getNumber() {
		return this.number;
	}

	public void setNumber(Integer number) {
		this.number = number;
	}

	public String getSex() {
		return this.sex;
	}

	public void setSex(String sex) {
		this.sex = sex;
	}

	public String getAge() {
		return this.age;
	}

	public void setAge(String age) {
		this.age = age;
	}

	public String getEdu() {
		return this.edu;
	}

	public void setEdu(String edu) {
		this.edu = edu;
	}

	public String getWorkTrans() {
		return this.workTrans;
	}

	public void setWorkTrans(String workTrans) {
		this.workTrans = workTrans;
	}

	public String getJobType() {
		return this.jobType;
	}

	public void setJobType(String jobType) {
		this.jobType = jobType;
	}

	public String getLoca() {
		return this.loca;
	}

	public void setLoca(String loca) {
		this.loca = loca;
	}

	public String getPay() {
		return this.pay;
	}

	public void setPay(String pay) {
		this.pay = pay;
	}

	public String getContact() {
		return this.contact;
	}

	public void setContact(String contact) {
		this.contact = contact;
	}

	public String getTelphone() {
		return this.telphone;
	}

	public void setTelphone(String telphone) {
		this.telphone = telphone;
	}

	public String getFax() {
		return this.fax;
	}

	public void setFax(String fax) {
		this.fax = fax;
	}

	public String getEmail() {
		return this.email;
	}

	public void setEmail(String email) {
		this.email = email;
	}

	public String getAddress() {
		return this.address;
	}

	public void setAddress(String address) {
		this.address = address;
	}

	public String getPostcode() {
		return this.postcode;
	}

	public void setPostcode(String postcode) {
		this.postcode = postcode;
	}

	public Date getEndTime() {
		return this.endTime;
	}

	public void setEndTime(Date endTime) {
		this.endTime = endTime;
	}

	public Long getUserId() {
		return this.userId;
	}

	public void setUserId(Long userId) {
		this.userId = userId;
	}

	public Date getPublishDate() {
		return this.publishDate;
	}

	public void setPublishDate(Date publishDate) {
		this.publishDate = publishDate;
	}

	public Integer getState() {
		return this.state;
	}

	public void setState(Integer state) {
		this.state = state;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -