departmentproxy.java

来自「一套大型Office网络办公系统」· Java 代码 · 共 83 行

JAVA
83
字号
/**
* Copyright (c) 2002 CODEFAD.com
* All right reserved.
*
* Description: 部门代理
*
* Author: Chu Daping 2002-5-10 16:43
*
*/

package com.codefad.easyoffice;

import java.util.*;

public class DepartmentProxy implements Department {
	
	private Department dept;
	
	public DepartmentProxy(Department dept) {
		this.dept = dept;
	}
	
    public long getDeptID() {
    	return this.getDeptID();
    }
    
    public long getStationID() {
    	return this.getStationID();
    }
    
    public String getDeptName() {
    	return this.getDeptName();
    }
    
    public void setDeptName(String deptname) {
    	this.setDeptName(deptname);
    }
    
    public ArrayList users() {
    	return this.users();
    }
    
    public Date getCreateDate() {
    	return this.getCreateDate();
    }
    
    public void setCreateDate(Date createdate) {
    	this.setCreateDate(createdate);
    }
    
    public String getDeptMemo() {
    	return this.getDeptMemo();
    }
    
    public void setDeptMemo(String memo) {
    	this.setDeptMemo(memo);
    } 
    
    public Callboard getCallboard(long boardID) {
    	return this.getCallboard(boardID);
    }

    public ArrayList callboards() {
    	return this.callboards();
    }
    
    public ArrayList schemes() {
    	return this.schemes();
    }
    
    public InfoStation getInfoStation() {
    	return this.getInfoStation();
    }
    
    public Scheme getScheme(long schemeID) {
    	return this.getScheme(schemeID);
    }
    
    public Scheme getScheme(String objdate) {
    	return this.getScheme(objdate);
    }
}

⌨️ 快捷键说明

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