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.
29 lines
708 B
29 lines
708 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; }
|
|
}
|
|
}
|
|
|