|
|
|
namespace BBWY.Client.Models
|
|
|
|
{
|
|
|
|
public class OrderDropShippingResponse
|
|
|
|
{
|
|
|
|
public string OrderId { get; set; }
|
|
|
|
|
|
|
|
public string BuyerAccount { get; set; }
|
|
|
|
|
|
|
|
public decimal DeliveryFreight { get; set; }
|
|
|
|
|
|
|
|
public decimal PurchaseAmount { get; set; }
|
|
|
|
|
|
|
|
public string PurchaseOrderId { get; set; }
|
|
|
|
|
|
|
|
public Platform? PurchasePlatform { get; set; }
|
|
|
|
|
|
|
|
public string SellerAccount { get; set; }
|
|
|
|
|
|
|
|
public decimal SkuAmount
|
|
|
|
{
|
|
|
|
get; set;
|
|
|
|
}
|
|
|
|
public decimal PurchaseFreight
|
|
|
|
{
|
|
|
|
get; set;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|