namespace BBWYB.Server.Model.Dto { public class CargoParamRequest { /// /// 采购商品Id /// public string ProductId { get; set; } /// /// 采购SkuId /// public string SkuId { get; set; } public string SpecId { get; set; } public int Quantity { get; set; } /// /// 订单SkuId /// public string BelongSkuId { get; set; } /// /// 采购方案Id /// public long SchemeId { get; set; } } public class CargoParamGroupRequest { public string PurchaserId { get; set; } public string PurchaserName { get; set; } public Enums.Platform PurchasePlatform { get; set; } public IList CargoParamList { get; set; } } }