using System; namespace BBWY.Client.Models { public class PurchaseOrderResponse { public long Id { get; set; } public DateTime? CreateTime { get; set; } public string ProductId { get; set; } public PurchaseMethod? PurchaseMethod { get; set; } public string PurchaseOrderId { get; set; } public Platform? PurchasePlatform { get; set; } public int PurchaseQuantity { get; set; } public int RemainingQuantity { get; set; } public string SkuId { get; set; } public StorageType? StorageType { get; set; } public long ShopId { get; set; } /// /// 单件发货运费 /// public decimal SingleDeliveryFreight { get; set; } = 0.00M; ///// ///// 单件操作费 ///// //public decimal SingleOperationAmount { get; set; } = 0.00M; /// /// 单件入仓操作费 /// public decimal SingleInStorageAmount { get; set; } = 0.00M; /// /// 单件出仓操作费 /// public decimal SingleOutStorageAmount { get; set; } = 0.00M; /// /// 单件耗材费 /// public decimal SingleConsumableAmount { get; set; } = 0.00M; ///// ///// 单件仓储费 ///// //public decimal SingleStorageAmount { get; set; } = 0.00M; /// /// 包装人工费 /// public decimal SinglePackagingLaborAmount { get; set; } = 0.00M; /// /// 单件Sku成本 /// public decimal SingleSkuAmount { get; set; } = 0.00M; /// /// 单件采购运费 /// public decimal SingleFreight { get; set; } = 0.00M; /// /// 单件头程运费 /// public decimal SingleFirstFreight { get; set; } = 0.00M; /// /// 退货入仓单价 /// public decimal SingleRefundInStorageAmount { get; set; } = 0.00M; } }