?? businessrule.java
字號:
package unicom.bean;
/**
* @author xiaogang
* 日期:Apr 17, 2008
* 功能:該類與數據庫中的TBusinessRule表相關聯,用于保存具體的業務收費規則
* 優點:
* 缺點:
* 建議:
*/
public class BusinessRule {
private String id;
private String code;
public BusinessRule() {
super();
}
//getter and setter
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -