using System.Collections.Generic; namespace BBWY.Server.Model.Dto { public class InputPurchaseSchemeRequest { public string ShopId { get; set; } public string ProductId { get; set; } public string SkuId { get; set; } /// /// 采购默认成本 /// public decimal? DefaultCost { get; set; } /// /// 采购实际成本 /// public decimal? RealCost { get; set; } /// /// 采购商Id /// public string PurchaserId { get; set; } public string PurchaserName { get; set; } /// /// 采购商发货地 /// public string PurchaserLocation { get; set; } /// /// 采购平台 /// public Enums.Platform PurchasePlatform { get; set; } = Enums.Platform.阿里巴巴; public IList PurchaseSchemeProductList { get; set; } } }