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