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.
43 lines
1.1 KiB
43 lines
1.1 KiB
namespace QuanTan.SDK.Models.Supplier
|
|
{
|
|
public class QuanTan_Supplier_EditPriceResponse
|
|
{
|
|
public string orderId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单商品总金额
|
|
/// </summary>
|
|
public decimal productPrice { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单运费总金额
|
|
/// </summary>
|
|
public decimal totalPostage { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单应实付金额
|
|
/// </summary>
|
|
public decimal payPrice { get; set; }
|
|
|
|
public IList<QuanTan_Supplier_EditPriceSkuResponse> orderProduct { get; set; }
|
|
}
|
|
|
|
public class QuanTan_Supplier_EditPriceSkuResponse
|
|
{
|
|
public string orderProductId { get; set; }
|
|
|
|
public decimal price { get; set; }
|
|
|
|
public int quantity { get; set; }
|
|
|
|
/// <summary>
|
|
/// sku商品总金额
|
|
/// </summary>
|
|
public decimal productPrice { get; set; }
|
|
|
|
/// <summary>
|
|
/// sku运费
|
|
/// </summary>
|
|
public decimal postagePrice { get; set; }
|
|
}
|
|
}
|
|
|