📄 departmentproxy.java
字号:
/**
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -