You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
702 B

namespace BBWYB.Client.Models
{
public class OrderDropShippingResponse
{
public long Id { get; set; }
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 string MerchantOrderId { get; set; }
public Platform? PurchasePlatform { get; set; }
public string SellerAccount { get; set; }
public decimal SkuAmount
{
get; set;
}
public decimal PurchaseFreight
{
get; set;
}
}
}