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.

54 lines
1.2 KiB

namespace SDKAdapter.PurchasePlatform.Models
{
public class PP_QueryOrderDetailResponse
{
/// <summary>
/// 采购单号
/// </summary>
public string OrderId { get; set; }
/// <summary>
/// 订单总额
/// </summary>
public decimal TotalAmount { get; set; }
/// <summary>
/// 货款总额
/// </summary>
public decimal ProductAmount { get; set; }
/// <summary>
/// 运费总额
/// </summary>
public decimal FreightAmount { get; set; }
/// <summary>
/// 订单Sku明细列表
/// </summary>
public IList<PP_QueryOrderDetailSkuResponse> ItemList { get; set; }
}
/// <summary>
/// 采购单简单明细
/// </summary>
public class PP_QueryOrderDetailSkuResponse
{
public string ProductId { get; set; }
public string SkuId { get; set; }
public string SpecId { get; set; }
/// <summary>
/// 货款金额
/// </summary>
public decimal ProductAmount { get; set; }
/// <summary>
/// 单价
/// </summary>
public decimal Price { get; set; }
public int Quantity { get; set; }
}
}