Commit 52914f6f by 徐高华

订单

parent ca4b65aa
......@@ -55,7 +55,41 @@ public class OrderDetailItemVO implements Serializable {
*/
private Double payAmount;
// 物流ID
private String logisticsId ;
/**
* 是否有退款 0无退款 1退款待处理 2成功 3退款关闭 4待买家退货 5待商家收货 6拒绝退款
*/
private Integer refundStatus;
/**
* 是否有换货 0无 1换货中 2成功 3失败
*/
private Integer exchangeStatus;
public String getLogisticsId() {
return logisticsId;
}
public Integer getRefundStatus() {
return refundStatus;
}
public Integer getExchangeStatus() {
return exchangeStatus;
}
public void setLogisticsId(String logisticsId) {
this.logisticsId = logisticsId;
}
public void setRefundStatus(Integer refundStatus) {
this.refundStatus = refundStatus;
}
public void setExchangeStatus(Integer exchangeStatus) {
this.exchangeStatus = exchangeStatus;
}
public String getOrderItemId() {
return orderItemId;
......
......@@ -61,6 +61,31 @@ public class OrderListItemVO implements Serializable {
// 物流ID
private String logisticsId ;
/**
* 是否有退款 0无退款 1退款待处理 2成功 3退款关闭 4待买家退货 5待商家收货 6拒绝退款
*/
private Integer refundStatus;
/**
* 是否有换货 0无 1换货中 2成功 3失败
*/
private Integer exchangeStatus;
public Integer getRefundStatus() {
return refundStatus;
}
public Integer getExchangeStatus() {
return exchangeStatus;
}
public void setRefundStatus(Integer refundStatus) {
this.refundStatus = refundStatus;
}
public void setExchangeStatus(Integer exchangeStatus) {
this.exchangeStatus = exchangeStatus;
}
public String getLogisticsId() {
return logisticsId;
}
......
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