customerscorebean.java
来自「基于struts的网上商店源码」· Java 代码 · 共 73 行
JAVA
73 行
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 + =
减小字号Ctrl + -
显示快捷键?