using System; using System.Collections.Generic; using System.Text; namespace BBWY.Server.Model.Dto { public class CargoParamRequest { public string ProductId { get; set; } public string SkuId { get; set; } public string SpecId { get; set; } public int Quantity { get; set; } } }