?? signstate.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;
import oa.sys.*;
/**
****************************************************
*類名稱: Signstate<br>
*類功能: 簽到狀態(tài)(類型)<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 Signstate {
private int id;
private String describestate;
private String time;
/**
* 簽到狀態(tài)
*/
public Signstate() {
super();
id=0;
describestate="";
time=new Time().getHMS();
}
public void setId(int id){
this.id=id;
}
public int getId(){
return id;
}
public void setDescribestate(String describestate){
this.describestate=describestate;
}
public String getDescribestate(){
return describestate;
}
public void setTime(String time){
this.time=time;
}
public String getTime(){
return time;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -