using Newtonsoft.Json; namespace Common.Request.internationalshipment { public class InterManInfo { /// /// 姓名 /// public string name { get; set; } /// /// 手机号,手机号和电话号二者其一必填 /// public string mobile { get; set; } /// /// 电话号,手机号和电话号二者其一必填 /// public string tel { get; set; } /// /// 城市 /// public string city { get; set; } /// /// 收件人所在完整地址 /// public string addr { get; set; } /// /// 州|省,可作为收件地址补充 /// public string province { get; set; } /// /// 郡|县,可作为收件地址补充 /// public string district { get; set; } /// /// 公司名称 /// public string company { get; set; } /// /// 邮编 /// public string zipcode { get; set; } /// /// 国家代号 CN-中国 ,US-美国等, 详见字典表 /// public string countryCode { get; set; } /// /// 邮箱 /// public string email { get; set; } /// /// 州或省代号,美国必填,例如纽约州-NY /// public string stateOrProvinceCode { get; set; } /// /// 税号 /// public string taxId { get; set; } /// /// 纳税人类型 /// public string taxType { get; set; } /// /// VAT税号(数字或字母);欧盟国家(含英国)使用的增值税号; /// public string vatNum { get; set; } /// /// EORI号码(数字或字母);欧盟入关时需要EORI号码,用于商品货物的清关 /// public string eoriNum { get; set; } /// /// IOSS号码 /// public string iossNum { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } } }