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

📄 department.java

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

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

/**
 * Department generated by MyEclipse Persistence Tools
 */

public class Department implements java.io.Serializable {

	// Fields

	private Long departmentId;

	private String departmentnum;

	private String departmentName;

	private String explain;

	private String telephone;

	private Long status;

	private String departmentRemark;
	
	private Set employee = new HashSet();
	
	private Set acceptfile = new HashSet();
	// Constructors

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

	/** full constructor */
	public Department(String departmentnum, String departmentName,
			String explain, String telephone, Long status,
			String departmentRemark) {
		this.departmentnum = departmentnum;
		this.departmentName = departmentName;
		this.explain = explain;
		this.telephone = telephone;
		this.status = status;
		this.departmentRemark = departmentRemark;
	}

	// Property accessors

	public Long getDepartmentId() {
		return this.departmentId;
	}

	public void setDepartmentId(Long departmentId) {
		this.departmentId = departmentId;
	}

	public String getDepartmentnum() {
		return this.departmentnum;
	}

	public void setDepartmentnum(String departmentnum) {
		this.departmentnum = departmentnum;
	}

	public String getDepartmentName() {
		return this.departmentName;
	}

	public void setDepartmentName(String departmentName) {
		this.departmentName = departmentName;
	}

	public String getExplain() {
		return this.explain;
	}

	public void setExplain(String explain) {
		this.explain = explain;
	}

	public String getTelephone() {
		return this.telephone;
	}

	public void setTelephone(String telephone) {
		this.telephone = telephone;
	}

	public Long getStatus() {
		return this.status;
	}

	public void setStatus(Long status) {
		this.status = status;
	}

	public String getDepartmentRemark() {
		return this.departmentRemark;
	}

	public void setDepartmentRemark(String departmentRemark) {
		this.departmentRemark = departmentRemark;
	}

	public Set getEmployee() {
		return employee;
	}

	public void setEmployee(Set employee) {
		this.employee = employee;
	}

	public Set getAcceptfile() {
		return acceptfile;
	}

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


}

⌨️ 快捷键说明

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