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 SingleConsumableAmount { get; set; } = 0.00M; /// /// 单件仓储费 /// public decimal SingleStorageAmount { 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; } }