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

📄 department.java

📁 jsf在线考试系统的实例
💻 JAVA
字号:
package com.jlobo.web.beans;

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

public class Department {
	private Long id;
	private String name;
	private String localName;
	private Department parent;
	private String type;
	private String describe;
	private String remark;
	private Long sort;
	private String status;
	private Set departments = new HashSet(0);
	
	public Department(){
		
	}
	
	public Department(Long id,String name,String localName,Department parent,String type,
	String describe,String remark,Long sort,String status,Set departments){
		this.id = id;
		this.name = name;
		this.localName = localName;
		this.parent = parent;
		this.type = type;
		this.describe = describe;
		this.remark = remark;
		this.sort = sort;
		this.status = status;
		this.departments = departments;
	}

	public Long getId() {
		return id;
	}

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

	public String getName() {
		return name;
	}

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

	public String getLocalName() {
		return localName;
	}

	public void setLocalName(String localName) {
		this.localName = localName;
	}

	public Department getParent() {
		return parent;
	}

	public void setParent(Department parent) {
		this.parent = parent;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public String getDescribe() {
		return describe;
	}

	public void setDescribe(String describe) {
		this.describe = describe;
	}

	public String getRemark() {
		return remark;
	}

	public void setRemark(String remark) {
		this.remark = remark;
	}

	public Long getSort() {
		return sort;
	}

	public void setSort(Long sort) {
		this.sort = sort;
	}

	public String getStatus() {
		return status;
	}

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

	public Set getDepartments() {
		return departments;
	}

	public void setDepartments(Set departments) {
		this.departments = departments;
	}
}

⌨️ 快捷键说明

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