?? emr.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;
import oa.sys.*;
/**
****************************************************
*類名稱: Emr<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 Emr {
private int recorded;
private String time;
private String work;
private int emid;
/**
* 員工日志
*/
public Emr() {
super();
recorded=0;
time=new Time().getYMDHMS();
work="";
emid=0;
}
public void setRecorded(int recorded) {
this.recorded = recorded;
}
public int getRecorded() {
return recorded;
}
public void setString(String time) {
this.time = time;
}
public String getString() {
return time;
}
public void setWork(String work) {
this.work = work;
}
public String getWork() {
return work;
}
public void setEmid(int emid) {
this.emid = emid;
}
public int getEmid() {
return emid;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -