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

📄 temployee.java

📁 这是大唐电信的一个管理系统
💻 JAVA
字号:
package com.tatang.po;

import java.util.Date;

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

public class TEmployee implements java.io.Serializable {

	// Fields

	private Integer id;
	private String name;
	private String password;
	private Date birthday;
	private String position;
	private Date hireDate;
	private String managerId;
	private String experience;
	private String major;
	private String degree;

	// Constructors

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

	/** minimal constructor */
	public TEmployee(Integer id, String name, String password, Date birthday,
			String position, Date hireDate) {
		this.id = id;
		this.name = name;
		this.password = password;
		this.birthday = birthday;
		this.position = position;
		this.hireDate = hireDate;
	}

	/** full constructor */
	public TEmployee(Integer id, String name, String password, Date birthday,
			String position, Date hireDate, String managerId,
			String experience, String major, String degree) {
		this.id = id;
		this.name = name;
		this.password = password;
		this.birthday = birthday;
		this.position = position;
		this.hireDate = hireDate;
		this.managerId = managerId;
		this.experience = experience;
		this.major = major;
		this.degree = degree;
	}

	// Property accessors

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

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

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

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

	public String getPassword() {
		return this.password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public Date getBirthday() {
		return this.birthday;
	}

	public void setBirthday(Date birthday) {
		this.birthday = birthday;
	}

	public String getPosition() {
		return this.position;
	}

	public void setPosition(String position) {
		this.position = position;
	}

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

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

	public String getManagerId() {
		return this.managerId;
	}

	public void setManagerId(String managerId) {
		this.managerId = managerId;
	}

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

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

	public String getMajor() {
		return this.major;
	}

	public void setMajor(String major) {
		this.major = major;
	}

	public String getDegree() {
		return this.degree;
	}

	public void setDegree(String degree) {
		this.degree = degree;
	}

}

⌨️ 快捷键说明

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