orderbean.java
来自「jsp/serlvet/javaBean:订餐系统」· Java 代码 · 共 43 行
JAVA
43 行
package bean;
import java.io.*;
public class OrderBean implements Serializable{
private int orderID;
private String customerName;
private String address;
private String movePhone;
private String total;
public String getTotal() {
return total;
}
public void setTotal(String total) {
this.total = total;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getMovePhone() {
return movePhone;
}
public void setMovePhone(String movePhone) {
this.movePhone = movePhone;
}
public int getOrderID() {
return orderID;
}
public void setOrderID(int orderID) {
this.orderID = orderID;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?