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.

42 lines
970 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>
2 years ago
/// 订单Sku对象Id主键
2 years ago
/// </summary>
public string OrderSkuId { get; set; }
public string SkuId { get; set; }
/// <summary>
2 years ago
/// sku单价
2 years ago
/// </summary>
public decimal Price { get; set; }
2 years ago
2 years ago
/// <summary>
2 years ago
/// sku打包费单价
2 years ago
/// </summary>
2 years ago
public decimal InPackAmountPrice { get; set; }
///// <summary>
///// 数量
///// </summary>
//public int Quantity { get; set; }
2 years ago
/// <summary>
2 years ago
/// 单笔sku的订单运费(用户支付运费)
2 years ago
/// </summary>
public decimal Freight { get; set; }
2 years ago
2 years ago
}
}