namespace QuanTan.SDK.Models.Supplier { public class QuanTan_Supplier_EditPriceResponse { public string orderId { get; set; } /// /// 订单商品总金额 /// public decimal productPrice { get; set; } /// /// 订单运费总金额 /// public decimal totalPostage { get; set; } /// /// 订单应实付金额 /// public decimal payPrice { get; set; } public IList orderProduct { get; set; } } public class QuanTan_Supplier_EditPriceSkuResponse { public string orderProductId { get; set; } public decimal price { get; set; } public int quantity { get; set; } /// /// sku商品总金额 /// public decimal productPrice { get; set; } /// /// sku运费 /// public decimal postagePrice { get; set; } } }