?? job.java
字號(hào):
/*
* 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;
/**
****************************************************
*類名稱: Job<br>
*類功能: 職位(類型)<br>
*創(chuàng)建: 白偉明 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 Job {
private String explain;
private int id;
private String name;
/**
* 職位
*/
public Job() {
super();
id=0;
name="";
explain="";
}
public String getExplain(){
return explain;
}
public int getId(){
return id;
}
public String getName(){
return name;
}
public void setExplain(String explain){
this.explain=explain;
}
public void setId(int id){
this.id=id;
}
public void setName(String name){
this.name=name;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -