?? record.java~17~
字號:
package com.jbaptech.accp.netbar.server.entity;
import java.io.Serializable;
/**
*
* <p>Title: Record JavaBean</p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2005</p>
*
* <p>Company: 北京阿博泰克北大青鳥信息技術有限公司</p>
*
* @author luohao
* @version 1.0
*/
public class Record
implements Serializable {
public Record() {
}
private int id;
private String cardId;
private String computerId;
private String beginTime;
private String endTime;
private int fee;
public int getId() {
return this.id;
}
public String getCardId() {
return this.cardId;
}
public String getComputerId() {
return this.computerId;
}
public String getBeginTime(){
return this.beginTime;
}
public String getEndTime(){
return this.endTime;
}
public void setId(int id) {
this.id = id;
}
public void setCardId(String cardId) {
this.cardId = cardId;
}
public void setComputerId(String computerId) {
this.computerId = computerId;
}
public void setBeginTime(String beginTime){
this.beginTime = beginTime;
}
public void setEndTime(String endTime){
this.endTime = endTime;
}
public int getFee(){
return this.fee;
}
public void setFee(int fee){
this.fee = fee;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -