using System;
namespace BBWY.Client.Models
{
public class PurchaseOrderSkuResponse
{
public long Id { get; set; }
///
/// 打包耗材费
///
public decimal? ConsumableAmount { get; set; } = 0.00M;
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 头程运费
///
public decimal? FirstFreight { get; set; } = 0.00M;
///
/// 入仓费
///
public decimal? InStorageAmount { get; set; } = 0.00M;
///
/// Sku Logo
///
public string Logo { get; set; }
///
/// 单价
///
public decimal? Price { get; set; } = 0.00M;
///
/// 采购货款
///
public decimal? ProductAmount { get; set; }
public string ProductId { get; set; }
///
/// 采购金额(采购货款+采购运费)
///
public decimal? PurchaseAmount { get; set; }
///
/// 采购运费
///
public decimal? PurchaseFreight { get; set; }
///
/// 采购单Id
///
public string PurchaseOrderId { get; set; }
///
/// 采购方案Id
///
public long? PurchaseSchemeId { get; set; }
///
/// 采购SkuId串
///
public string PurchaseSkuIds { get; set; }
///
/// 质检费
///
public decimal? QualityInspectionAmount { get; set; } = 0.00M;
///
/// 采购数量
///
public int? Quantity { get; set; }
///
/// 店铺Id
///
public long? ShopId { get; set; }
public string SkuId { get; set; }
///
/// Sku标题
///
public string SkuTitle { get; set; }
}
}