|
|
package com.yoho.order.model;
|
|
|
|
|
|
import lombok.ToString;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
import java.math.BigDecimal;
|
|
|
|
...
|
...
|
@@ -7,6 +9,7 @@ import java.math.BigDecimal; |
|
|
* @author caoyan
|
|
|
* @date 2018/9/12
|
|
|
*/
|
|
|
@ToString
|
|
|
public class BuyerOrder implements Serializable {
|
|
|
|
|
|
|
...
|
...
|
@@ -47,6 +50,8 @@ public class BuyerOrder implements Serializable { |
|
|
|
|
|
private Integer attributes;
|
|
|
|
|
|
private Integer platformDeliveryStatus;//1 平台发货给卖家, 2 平台发货给买家
|
|
|
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
|
}
|
...
|
...
|
@@ -167,23 +172,12 @@ public class BuyerOrder implements Serializable { |
|
|
this.attributes = attributes;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "BuyerOrder{" +
|
|
|
"id=" + id +
|
|
|
", uid='" + uid + '\'' +
|
|
|
", orderCode='" + orderCode + '\'' +
|
|
|
", sellerUid='" + sellerUid + '\'' +
|
|
|
", clientType=" + clientType +
|
|
|
", payment=" + payment +
|
|
|
", paymentType=" + paymentType +
|
|
|
", isCancel=" + isCancel +
|
|
|
", amount=" + amount +
|
|
|
", shipFee=" + shipFee +
|
|
|
", status=" + status +
|
|
|
", createTime=" + createTime +
|
|
|
", updateTime=" + updateTime +
|
|
|
", channelNo=" + channelNo +
|
|
|
'}';
|
|
|
}
|
|
|
public Integer getPlatformDeliveryStatus() {
|
|
|
return platformDeliveryStatus;
|
|
|
}
|
|
|
|
|
|
public void setPlatformDeliveryStatus(Integer platformDeliveryStatus) {
|
|
|
this.platformDeliveryStatus = platformDeliveryStatus;
|
|
|
}
|
|
|
|
|
|
} |
...
|
...
|
|