?? borrowbookform.java
字號:
package com.actionForm;
import org.apache.struts.action.*;
//借閱管理屬性
public class BorrowBookForm extends ActionForm {
private String bookAuthor="";
private String bookName="";
private String bookPunbilc="";
private String overTime="";
private String readerCard="";
private String startTime="";
private int booklink=0;
private int id=0;
private float bookPrice=0;
private float lendPrice=0;
private String lend="";
private String operation="";
public String getBookAuthor() {
return bookAuthor;
}
public void setBookAuthor(String bookAuthor) {
this.bookAuthor = bookAuthor;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public void setReaderCard(String readerCard) {
this.readerCard = readerCard;
}
public void setOverTime(String overTime) {
this.overTime = overTime;
}
public void setBookPunbilc(String bookPunbilc) {
this.bookPunbilc = bookPunbilc;
}
public void setBookName(String bookName) {
this.bookName = bookName;
}
public void setBooklink(int booklink) {
this.booklink = booklink;
}
public void setId(int id) {
this.id = id;
}
public void setBookPrice(float bookPrice) {
this.bookPrice = bookPrice;
}
public void setLendPrice(float lendPrice) {
this.lendPrice = lendPrice;
}
public void setLend(String lend) {
this.lend = lend;
}
public void setOperation(String operation) {
this.operation = operation;
}
public String getBookName() {
return bookName;
}
public String getBookPunbilc() {
return bookPunbilc;
}
public String getOverTime() {
return overTime;
}
public String getReaderCard() {
return readerCard;
}
public String getStartTime() {
return startTime;
}
public int getBooklink() {
return booklink;
}
public int getId() {
return id;
}
public float getBookPrice() {
return bookPrice;
}
public float getLendPrice() {
return lendPrice;
}
public String getLend() {
return lend;
}
public String getOperation() {
return operation;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -