using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// OrderLogisticsInfo Data Structure. /// [Serializable] public class OrderLogisticsInfo : AopObject { /// /// 消费者下单线下服务时,填写的服务地址 /// [XmlElement("address")] public string Address { get; set; } /// /// 联系人 /// [XmlElement("contact_name")] public string ContactName { get; set; } /// /// 订单的物流扩展信息,包括服务开始时间、服务结束时间 /// [XmlElement("ext_info")] public OrderLogisticsExtInfo ExtInfo { get; set; } /// /// 消费者地址纬度(高德坐标系) /// [XmlElement("latitude")] public string Latitude { get; set; } /// /// 消费者地址经度(高德坐标系) /// [XmlElement("longitude")] public string Longitude { get; set; } /// /// 商家电话绑定的消费者手机号(阿里小号) /// [XmlElement("merchant_bind_mobile")] public string MerchantBindMobile { get; set; } /// /// 联系电话 /// [XmlElement("mobile")] public string Mobile { get; set; } } }