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

📄 employeeinfo.java

📁 这是一个物流管理系统
💻 JAVA
字号:
package bean;

import java.util.HashSet;
import java.util.Set;

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

public class Employeeinfo implements java.io.Serializable {

	// Fields

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private Long employeeid;
	private Dutyinfo dutyinfo;
	private String employeename;
	private String employeepass;
	private Set<Depotmission> depotmissions = new HashSet<Depotmission>(0);
	private Set<Vehicle> vehicles = new HashSet<Vehicle>(0);
	private Set<Outgrowth> outgrowths = new HashSet<Outgrowth>(0);
	private Set<Orderinfo> orderinfos = new HashSet<Orderinfo>(0);

	// Constructors

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

	/** minimal constructor */
	public Employeeinfo(Dutyinfo dutyinfo, String employeename,
			String employeepass) {
		this.dutyinfo = dutyinfo;
		this.employeename = employeename;
		this.employeepass = employeepass;
	}

	/** full constructor */
	public Employeeinfo(Dutyinfo dutyinfo, String employeename,
			String employeepass, Set<Depotmission> depotmissions, Set<Vehicle> vehicles,
			Set<Outgrowth> outgrowths, Set<Orderinfo> orderinfos) {
		this.dutyinfo = dutyinfo;
		this.employeename = employeename;
		this.employeepass = employeepass;
		this.depotmissions = depotmissions;
		this.vehicles = vehicles;
		this.outgrowths = outgrowths;
		this.orderinfos = orderinfos;
	}

	// Property accessors

	public Long getEmployeeid() {
		return this.employeeid;
	}

	public void setEmployeeid(Long employeeid) {
		this.employeeid = employeeid;
	}

	public Dutyinfo getDutyinfo() {
		return this.dutyinfo;
	}

	public void setDutyinfo(Dutyinfo dutyinfo) {
		this.dutyinfo = dutyinfo;
	}

	public String getEmployeename() {
		return this.employeename;
	}

	public void setEmployeename(String employeename) {
		this.employeename = employeename;
	}

	public String getEmployeepass() {
		return this.employeepass;
	}

	public void setEmployeepass(String employeepass) {
		this.employeepass = employeepass;
	}

	public Set<Depotmission> getDepotmissions() {
		return this.depotmissions;
	}

	public void setDepotmissions(Set<Depotmission> depotmissions) {
		this.depotmissions = depotmissions;
	}

	public Set<Vehicle> getVehicles() {
		return this.vehicles;
	}

	public void setVehicles(Set<Vehicle> vehicles) {
		this.vehicles = vehicles;
	}

	public Set<Outgrowth> getOutgrowths() {
		return this.outgrowths;
	}

	public void setOutgrowths(Set<Outgrowth> outgrowths) {
		this.outgrowths = outgrowths;
	}

	public Set<Orderinfo> getOrderinfos() {
		return this.orderinfos;
	}

	public void setOrderinfos(Set<Orderinfo> orderinfos) {
		this.orderinfos = orderinfos;
	}

}

⌨️ 快捷键说明

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