order.java
来自「jsp+servlet网上购物,是一个实现mvc的网站」· Java 代码 · 共 65 行
JAVA
65 行
package com.ebook.Entity;
public class Order {
private int orderId;
private int userId;
private String orderDate;
private String postName;
private String postTel;
private String postNumber;
private String postAdress;
private String status;
public String getOrderDate() {
return orderDate;
}
public void setOrderDate(String orderDate) {
this.orderDate = orderDate;
}
public int getOrderId() {
return orderId;
}
public void setOrderId(int orderId) {
this.orderId = orderId;
}
public String getPostAdress() {
return postAdress;
}
public void setPostAdress(String postAdress) {
this.postAdress = postAdress;
}
public String getPostName() {
return postName;
}
public void setPostName(String postName) {
this.postName = postName;
}
public String getPostNumber() {
return postNumber;
}
public void setPostNumber(String postNumber) {
this.postNumber = postNumber;
}
public String getPostTel() {
return postTel;
}
public void setPostTel(String postTel) {
this.postTel = postTel;
}
public int getUserId() {
return userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
public void setStatus(String status)
{
this.status=status;
}
public String getStatus()
{
return status;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?