📄 customerscorebean.java
字号:
package com.mole.struts.bean;
public class CustomerScoreBean {
private int customerID;
private String customerName;
private String storeName;
private int storeID;
private int score;
private int reserve;
private String voucher;
public void CustomerScoreBean() {
}
public int getCustomerID() {
return customerID;
}
public void setCustomerID(int customerID) {
this.customerID = customerID;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getStoreName() {
return storeName;
}
public void setStoreName(String storeName) {
this.storeName = storeName;
}
public int getStoreID() {
return storeID;
}
public void setStoreID(int storeID) {
this.storeID = storeID;
}
public void setScore(int score) {
this.score = score;
}
public int getScore() {
return score;
}
public int getReserve() {
return reserve;
}
public void setReserve(int reserve) {
this.reserve = reserve;
}
public String getVoucher() {
return voucher;
}
public void setVoucher(String voucher) {
this.voucher = voucher;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -