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.

34 lines
851 B

namespace QuanTan.SDK.Models.Supplier
{
public class QuanTan_Supplier_EditPriceRequest
{
public string orderId { get; set; }
public string editAdmin { get; set; }
public IList<QuanTan_Supplier_EditPriceSkuRequest> orderProduct { get; set; }
}
public class QuanTan_Supplier_EditPriceSkuRequest
{
/// <summary>
/// 订单Sku商品Id
/// </summary>
public string orderProductId { get; set; }
/// <summary>
/// 单价
/// </summary>
public decimal price { get; set; }
/// <summary>
/// Sku运费
/// </summary>
public decimal postagePrice { get; set; }
/// <summary>
/// 单个订单商品的打包费
/// </summary>
public decimal packingChargeSingle { get; set; }
}
}