using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// Position Data Structure. /// [Serializable] public class Position : AopObject { /// /// 城市编码 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 点位唯一标识id /// [XmlElement("device_id")] public long DeviceId { get; set; } /// /// 屏幕类型,枚举值:SLCD、LED /// [XmlElement("device_type")] public string DeviceType { get; set; } /// /// 公交 或者 地铁:SUBWAY、BUS /// [XmlElement("scene")] public string Scene { get; set; } /// /// 站点编码 /// [XmlElement("station_code")] public string StationCode { get; set; } /// /// 站点等级,共分为4个等级,分别为:LEVELA、LEVLEB、LEVELC 以及 LEVELD /// [XmlElement("station_level")] public string StationLevel { get; set; } } }