?? orderlistvo.java
字號:
package bo;
public class OrderListVO {
private String userName;
private String orderTime;
private Double totalPrice;
private String orderId;
public OrderListVO() {
}
public void setUserName(String userName) {
this.userName = userName;
}
public void setOrderTime(String orderTime) {
this.orderTime = orderTime;
}
public void setTotalPrice(Double totalPrice) {
this.totalPrice = totalPrice;
}
public void setOrderId(String orderId) {
this.orderId = orderId;
}
public String getUserName() {
return userName;
}
public String getOrderTime() {
return orderTime;
}
public Double getTotalPrice() {
return totalPrice;
}
public String getOrderId() {
return orderId;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -