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.
36 lines
782 B
36 lines
782 B
2 years ago
|
namespace SDKAdapter.OperationPlatform.Models
|
||
|
{
|
||
|
public class OP_EditPriceRequest : BasePlatformRequest
|
||
|
{
|
||
|
public string OrderId { get; set; }
|
||
|
|
||
|
public IList<OP_EditPriceSkuRequest> EditItems { get; set; }
|
||
|
}
|
||
|
|
||
|
public class OP_EditPriceSkuRequest
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 订单Sku商品Id
|
||
|
/// </summary>
|
||
|
public string OrderSkuId { get; set; }
|
||
|
|
||
|
|
||
|
public string SkuId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 单价
|
||
|
/// </summary>
|
||
|
public decimal Price { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数量
|
||
|
/// </summary>
|
||
|
public int Quantity { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 运费
|
||
|
/// </summary>
|
||
|
public decimal Freight { get; set; }
|
||
|
}
|
||
|
}
|