using System; using System.Collections.Generic; namespace BBWYB.Client.Models { public partial class PurchaseSchemeResponse { public long Id { get; set; } public DateTime? CreateTime { get; set; } /// /// 采购默认成本 /// public decimal? DefaultCost { get; set; } public string ProductId { get; set; } /// /// 采购商Id /// public string PurchaserId { get; set; } public string PurchaserName { get; set; } /// /// 发货地 /// public string PurchaserLocation { get; set; } /// /// 采购实际成本 /// public decimal? RealCost { get; set; } public string SkuId { get; set; } public long ShopId { get; set; } /// /// 采购平台 /// public Platform PurchasePlatform { get; set; } public List PurchaseSchemeProductList { get; set; } } }