using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// QueryProvCityInfo Data Structure. /// [Serializable] public class QueryProvCityInfo : AopObject { /// /// 省市编号 /// [JsonProperty("adcode")] public string Adcode { get; set; } /// /// 城市名称 /// [JsonProperty("name")] public string Name { get; set; } } }