using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// OilStationDetails Data Structure. /// [Serializable] public class OilStationDetails : AopObject { /// /// 油站详细地址 /// [XmlElement("address")] public string Address { get; set; } /// /// 直降金额 /// [XmlElement("discount_price")] public string DiscountPrice { get; set; } /// /// 油站名称 /// [XmlElement("oil_station_name")] public string OilStationName { get; set; } /// /// 油品 /// [XmlElement("oil_type")] public string OilType { get; set; } /// /// 高德 poi_id /// [XmlElement("poi_id")] public string PoiId { get; set; } /// /// 油价,以元为单位 /// [XmlElement("sale_price")] public string SalePrice { get; set; } /// /// 油站门店ID /// [XmlElement("shop_id")] public string ShopId { get; set; } } }