?? password.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;
/**
****************************************************
*類名稱: Password<br>
*類功能: 激活賬號(類型)<br>
*創建: 白偉明 2004年10月11日<br>
****************************************************
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class Password {
private int id;
private String password;
private String time;
/**
* 優秀員工等級
*/
public Password() {
super();
id=0;
password="";
time="";
}
public void setId(int id) {
this.id = id;
}
public int getId() {
return id;
}
public void setPassword(String password) {
this.password = password;
}
public String getPassword() {
return password;
}
public void setTime(String time) {
this.time = time;
}
public String getTime() {
return time;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -