ordersheetentity.java

来自「网上购物系统 主要实现订单查询 订单各种操作 等」· Java 代码 · 共 50 行

JAVA
50
字号
package eshopsys.ordersheet.model;

import eshopsys.tools.base.BaseEntity;

public class OrderSheetEntity extends BaseEntity {
    private int orderId;
    private int userId;
    private String orderDate;
    private String orderShipDate;
    private String orderShipAddress;
    private int orderPayFlag;
	public int getOrderId() {
		return orderId;
	}
	public void setOrderId(int orderId) {
		this.orderId = orderId;
	}
	public int getUserId() {
		return userId;
	}
	public void setUserId(int userId) {
		this.userId = userId;
	}
	public String getOrderDate() {
		return orderDate;
	}
	public void setOrderDate(String orderDate) {
		this.orderDate = orderDate;
	}
	public String getOrderShipDate() {
		return orderShipDate;
	}
	public void setOrderShipDate(String orderShipDate) {
		this.orderShipDate = orderShipDate;
	}
	public String getOrderShipAddress() {
		return orderShipAddress;
	}
	public void setOrderShipAddress(String orderShipAddress) {
		this.orderShipAddress = orderShipAddress;
	}
	public int getOrderPayFlag() {
		return orderPayFlag;
	}
	public void setOrderPayFlag(int orderPayFlag) {
		this.orderPayFlag = orderPayFlag;
	}
    
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?