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

📄 employee.java

📁 带分页显示的简单例子 Hibernate
💻 JAVA
字号:
package fmq.model.bo;

import java.util.Date;

/**
 * Employee generated by MyEclipse Persistence Tools
 */

public class Employee implements java.io.Serializable {

	// Fields

	private String empId;

	private Publishers publishers;

	private Jobs jobs;

	private String fname;

	private String minit;

	private String lname;

	private Short jobLvl;

	private Date hireDate;

	// Constructors

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

	/** minimal constructor */
	public Employee(String empId, Publishers publishers, Jobs jobs,
			String fname, String lname, Date hireDate) {
		this.empId = empId;
		this.publishers = publishers;
		this.jobs = jobs;
		this.fname = fname;
		this.lname = lname;
		this.hireDate = hireDate;
	}

	/** full constructor */
	public Employee(String empId, Publishers publishers, Jobs jobs,
			String fname, String minit, String lname, Short jobLvl,
			Date hireDate) {
		this.empId = empId;
		this.publishers = publishers;
		this.jobs = jobs;
		this.fname = fname;
		this.minit = minit;
		this.lname = lname;
		this.jobLvl = jobLvl;
		this.hireDate = hireDate;
	}

	// Property accessors

	public String getEmpId() {
		return this.empId;
	}

	public void setEmpId(String empId) {
		this.empId = empId;
	}

	public Publishers getPublishers() {
		return this.publishers;
	}

	public void setPublishers(Publishers publishers) {
		this.publishers = publishers;
	}

	public Jobs getJobs() {
		return this.jobs;
	}

	public void setJobs(Jobs jobs) {
		this.jobs = jobs;
	}

	public String getFname() {
		return this.fname;
	}

	public void setFname(String fname) {
		this.fname = fname;
	}

	public String getMinit() {
		return this.minit;
	}

	public void setMinit(String minit) {
		this.minit = minit;
	}

	public String getLname() {
		return this.lname;
	}

	public void setLname(String lname) {
		this.lname = lname;
	}

	public Short getJobLvl() {
		return this.jobLvl;
	}

	public void setJobLvl(Short jobLvl) {
		this.jobLvl = jobLvl;
	}

	public Date getHireDate() {
		return this.hireDate;
	}

	public void setHireDate(Date hireDate) {
		this.hireDate = hireDate;
	}

}

⌨️ 快捷键说明

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