using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// StationDetailInfo Data Structure. /// [Serializable] public class StationDetailInfo : AopObject { /// /// 站点编码 /// [JsonProperty("code")] public string Code { get; set; } /// /// 站点外部编码 /// [JsonProperty("ext_code")] public string ExtCode { get; set; } /// /// 站点中文名称 /// [JsonProperty("name")] public string Name { get; set; } } }