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

📄 manager.java

📁 完整应用.简单工作流程.适用于有一定JAVA开发经验的程序员.想进一步提高JAVA三剑客的读者
💻 JAVA
字号:
package org.yeeku.model;

import java.io.Serializable;
import java.util.*;

/**
 * @author  yeeku.H.lee kongyeeku@163.com
 * @version  1.0
 * <br>Copyright (C), 2005-2008, yeeku.H.Lee
 * <br>This program is protected by copyright laws.
 * <br>Program Name:
 * <br>Date: 
 */

public class Manager extends Employee implements Serializable
{
    private static final long serialVersionUID = 48L;

    private String dept;

    /*
    private Set employees = new HashSet();
    private Set checks = new HashSet();
    */

    private Set<Employee> employees = new HashSet<Employee>();
    private Set<CheckBack> checks = new HashSet<CheckBack>();

    public Manager()
    {
    }
    public Manager(String dept)
    {
        this.dept = dept;
    }
    
    public String getDept()
    {
    	return dept;
    }
    
    public void setDept(String dept)
    {
    	this.dept = dept;
    }

 	public Set<Employee> getEmployees()
	{
		return this.employees;
	}
	
	public void setEmployees(Set<Employee> employees)
	{
		this.employees = employees;
	}

   	public Set<CheckBack> getChecks()
	{
		return this.checks;
	}
	
	public void setChecks(Set<CheckBack> checks)
	{
		this.checks = checks;
	} 
}

⌨️ 快捷键说明

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