📄 department.java
字号:
/*
* Created on 2004-9-17
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package oa.data;
/**
****************************************************
*类名称: Department<br>
*类功能: 部门(类型)<br>
*创建: 白伟明 2004年9月23日<br>
****************************************************
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class Department {
private int id;
private String name;
private String explain;
/**
* 部门
*/
public Department() {
super();
id=0;
name="";
explain="";
}
public void setId(int id){
this.id=id;
}
public int getId(){
return id;
}
public void setName(String name){
this.name=name;
}
public String getName(){
return name;
}
public void setExplain(String explain){
this.explain=explain;
}
public String getExplain(){
return explain;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -