using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// StationDetailInfo Data Structure. /// [Serializable] public class StationDetailInfo : AopObject { /// /// 站点编码 /// [XmlElement("code")] public string Code { get; set; } /// /// 站点外部编码 /// [XmlElement("ext_code")] public string ExtCode { get; set; } /// /// 站点中文名称 /// [XmlElement("name")] public string Name { get; set; } } }