namespace BBWY.Server.Model.Dto { public class ConsigneeResponse { /// /// 联系人名称 /// 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; } /// /// 是否解码 /// public bool? IsDecode { get; set; } } /// /// 收货人信息(不含省市区) /// public class ConsigneeSimpleResponse { /// /// 联系人名称 /// public string ContactName { get; set; } /// /// 座机 /// public string TelePhone { get; set; } /// /// 手机 /// public string Mobile { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 买家账号 /// public string BuyerAccount { get; set; } } }