using System; using System.Collections.Generic; using System.Text; namespace BBWY.Client.Models { public class CargoParam { public string ProductId { get; set; } public string SkuId { get; set; } public string SpecId { get; set; } public int Quantity { get; set; } public string BelongSkuId { get; set; } public long SchemeId { get; set; } } }