Commit dea3b88a by 徐高华

订单状态

parent 52914f6f
......@@ -67,6 +67,19 @@ public class OrderDetailItemVO implements Serializable {
*/
private Integer exchangeStatus;
/**
* 订单项状态:0(交易关闭),2待发货,3已发货,4已确认(交易成功)'
*/
private Integer orderItemStatus;
public Integer getOrderItemStatus() {
return orderItemStatus;
}
public void setOrderItemStatus(Integer orderItemStatus) {
this.orderItemStatus = orderItemStatus;
}
public String getLogisticsId() {
return logisticsId;
}
......
......@@ -70,6 +70,19 @@ public class OrderListItemVO implements Serializable {
*/
private Integer exchangeStatus;
/**
* 订单项状态:0(交易关闭),2待发货,3已发货,4已确认(交易成功)'
*/
private Integer orderItemStatus;
public Integer getOrderItemStatus() {
return orderItemStatus;
}
public void setOrderItemStatus(Integer orderItemStatus) {
this.orderItemStatus = orderItemStatus;
}
public Integer getRefundStatus() {
return refundStatus;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment