using Newtonsoft.Json; namespace Common.Request.internationalshipment { public class ExportInfo { /// /// 净重 /// public double netWeight { get; set; } /// /// 毛重 /// public double grossWeight { get; set; } /// /// 原产国国家代码,中国-CN,美国-US /// public string manufacturingCountryCode { get; set; } /// /// 单位价格 /// public double unitPrice { get; set; } /// /// 商品数量,INT 1 -1000000000,必须整数,小数dhl会报错,且不返回具体错误 /// public int quantity { get; set; } /// /// 计数单位,件-PCS {get; set;}双-PRS {get; set;}千克-KG {get; set;}默认件 /// public string quantityUnitOfMeasurement { get; set; } /// /// 物品描述 /// public string desc { get; set; } /// /// 进口商品编码 /// public string importCommodityCode { get; set; } /// /// 出口商品编码 /// public string exportCommodityCode { get; set; } /// /// 件数 /// public int numberOfPieces { get; set; } /// /// sku /// public string sku { get; set; } /// /// 产品的中文名 /// public string zhName { get; set; } /// /// 产品的英文名 /// public string enName { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } } }