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

📄 employee.java

📁 实现了基本的oa功能:个人日志。。。
💻 JAVA
字号:
package oa.popedommanager.model.po;

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

import oa.dailywork.model.po.Department;

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

public class Employee implements java.io.Serializable {

	// Fields

	private Long employeeId;

	private String employeeNum;

	private String employeeName;

	private String loginName;

	private String pwd;

	private String sex;

	private Date birthday;

	private Long age;

	private String jiguan;

	private String employeePostion;

	private Long employeeStatus;

	private String telphone;

	private String mobilePhone;

	private String employeeRemark;
	
	private Set acceptfile = new HashSet();

	private Department dep;
	
	private Set Process = new HashSet();

	// Constructors


	public Set getAcceptfile() {
		return acceptfile;
	}

	public void setAcceptfile(Set acceptfile) {
		this.acceptfile = acceptfile;
	}

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

	/** full constructor */
	public Employee(String employeeNum, String employeeName, String loginName,
			String pwd, String sex, Date birthday, Long age, Long departmentId,
			String jiguan, String employeePostion, Long employeeStatus,
			String telphone, String mobilePhone, String employeeRemark) {
		this.employeeNum = employeeNum;
		this.employeeName = employeeName;
		this.loginName = loginName;
		this.pwd = pwd;
		this.sex = sex;
		this.birthday = birthday;
		this.age = age;
		this.jiguan = jiguan;
		this.employeePostion = employeePostion;
		this.employeeStatus = employeeStatus;
		this.telphone = telphone;
		this.mobilePhone = mobilePhone;
		this.employeeRemark = employeeRemark;
	}

	// Property accessors

	public Long getEmployeeId() {
		return this.employeeId;
	}

	public void setEmployeeId(Long employeeId) {
		this.employeeId = employeeId;
	}

	public String getEmployeeNum() {
		return this.employeeNum;
	}

	public void setEmployeeNum(String employeeNum) {
		this.employeeNum = employeeNum;
	}

	public String getEmployeeName() {
		return this.employeeName;
	}

	public void setEmployeeName(String employeeName) {
		this.employeeName = employeeName;
	}

	public String getLoginName() {
		return this.loginName;
	}

	public void setLoginName(String loginName) {
		this.loginName = loginName;
	}

	public String getPwd() {
		return this.pwd;
	}

	public void setPwd(String pwd) {
		this.pwd = pwd;
	}

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

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

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

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

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

	public void setAge(Long age) {
		this.age = age;
	}
	public String getJiguan() {
		return this.jiguan;
	}

	public void setJiguan(String jiguan) {
		this.jiguan = jiguan;
	}

	public String getEmployeePostion() {
		return this.employeePostion;
	}

	public void setEmployeePostion(String employeePostion) {
		this.employeePostion = employeePostion;
	}

	public Long getEmployeeStatus() {
		return this.employeeStatus;
	}

	public void setEmployeeStatus(Long employeeStatus) {
		this.employeeStatus = employeeStatus;
	}

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

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

	public String getMobilePhone() {
		return this.mobilePhone;
	}

	public void setMobilePhone(String mobilePhone) {
		this.mobilePhone = mobilePhone;
	}

	public String getEmployeeRemark() {
		return this.employeeRemark;
	}

	public void setEmployeeRemark(String employeeRemark) {
		this.employeeRemark = employeeRemark;
	}

	public Department getDep() {
		return dep;
	}

	public void setDep(Department dep) {
		this.dep = dep;
	}

	public Set getProcess() {
		return Process;
	}

	public void setProcess(Set process) {
		Process = process;
	}

}

⌨️ 快捷键说明

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