namespace SDKAdapter.PurchasePlatform.Models { public class PP_ConsigneeRequest { /// /// 联系人名称 /// public string ContactName { get; set; } /// /// 座机 /// public string TelePhone { get; set; } /// /// 手机 /// public string Mobile { get; set; } /// /// 详细地址 /// public string Address { get; set; } /// /// 省 /// public string Province { get; set; } /// /// 市 /// public string City { get; set; } /// /// 县 /// public string County { get; set; } /// /// 镇 /// public string Town { get; set; } } }