?? customervoucherbean.java
字號:
package com.mole.struts.bean;
public class CustomerVoucherBean {
private String voucherName;
private String storeName;
private String description;
private String scale;
private String amount;
private String usedAmount;
public CustomerVoucherBean() {
}
public String getVoucherName() {
return voucherName;
}
public void setVoucherName(String voucherName) {
this.voucherName = voucherName;
}
public String getStoreName() {
return storeName;
}
public void setStoreName(String storeName) {
this.storeName = storeName;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getScale() {
return scale;
}
public void setScale(String scale) {
this.scale = scale;
}
public String getAmount() {
return amount;
}
public void setAmount(String amount) {
this.amount = amount;
}
public String getUsedAmount() {
return usedAmount;
}
public void setUsedAmount(String usedAmount) {
this.usedAmount = usedAmount;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -