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

📄 job.java

📁 JAVA B/S struts
💻 JAVA
字号:
package org.first.entity;

/**
 * Job generated by MyEclipse Persistence Tools
 */

public class Job implements java.io.Serializable {

	// Fields

	private Integer jobId;

	private String name;

	private String sex;

	private Integer age;

	private String job;

	private String specialty;

	private String experience;

	private String isstock;

	// Constructors

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

	/** minimal constructor */
	public Job(String name, String sex) {
		this.name = name;
		this.sex = sex;
	}

	/** full constructor */
	public Job(String name, String sex, Integer age, String job,
			String specialty, String experience, String isstock) {
		this.name = name;
		this.sex = sex;
		this.age = age;
		this.job = job;
		this.specialty = specialty;
		this.experience = experience;
		this.isstock = isstock;
	}

	// Property accessors

	public Integer getJobId() {
		return this.jobId;
	}

	public void setJobId(Integer jobId) {
		this.jobId = jobId;
	}

	public String getName() {
		return this.name;
	}

	public void setName(String name) {
		this.name = name;
	}

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

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

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

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

	public String getJob() {
		return this.job;
	}

	public void setJob(String job) {
		this.job = job;
	}

	public String getSpecialty() {
		return this.specialty;
	}

	public void setSpecialty(String specialty) {
		this.specialty = specialty;
	}

	public String getExperience() {
		return this.experience;
	}

	public void setExperience(String experience) {
		this.experience = experience;
	}

	public String getIsstock() {
		return this.isstock;
	}

	public void setIsstock(String isstock) {
		this.isstock = isstock;
	}

}

⌨️ 快捷键说明

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