?? orders.java
字號(hào):
package vo;
import java.io.*;
import java.sql.*;
public class Orders implements Serializable {
private String orderId;
private Integer orderStatus;
private String userId;
private Timestamp orderTime;
public Orders() {
}
public void setOrderId(String orderId) {
this.orderId = orderId;
}
public void setOrderStatus(Integer orderStatus) {
this.orderStatus = orderStatus;
}
public void setUserId(String userId) {
this.userId = userId;
}
public void setOrderTime(Timestamp orderTime) {
this.orderTime = orderTime;
}
public String getOrderId() {
return orderId;
}
public Integer getOrderStatus() {
return orderStatus;
}
public String getUserId() {
return userId;
}
public Timestamp getOrderTime() {
return orderTime;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -