using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AddressInfoKt Data Structure. /// [Serializable] public class AddressInfoKt : AopObject { /// /// 地址。商户详细经营地址或人员所在地点 /// [XmlElement("address")] public string Address { get; set; } /// /// 城市编码,城市编码是与国家统计局一致,请查询: http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/ 国标省市区号下载:http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls?spm=a219a.7629140.0.0.qRW4KQ&file=2016.xls /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 区县编码,区县编码是与国家统计局一致,请查询: http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/ 国标省市区号下载:http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls?spm=a219a.7629140.0.0.qRW4KQ&file=2016.xls /// [XmlElement("district_code")] public string DistrictCode { get; set; } /// /// 纬度,浮点型,小数点后最多保留6位 如需要录入经纬度,请以高德坐标系为准,录入时请确保经纬度参数准确。高德经纬度查询:http://lbs.amap.com/console/show/picker /// [XmlElement("latitude")] public string Latitude { get; set; } /// /// 经度,浮点型, 小数点后最多保留6位。 如需要录入经纬度,请以高德坐标系为准,录入时请确保经纬度参数准确。高德经纬度查询:http://lbs.amap.com/console/show/picker /// [XmlElement("longitude")] public string Longitude { get; set; } /// /// 省份编码, 省份编码是与国家统计局一致,请查询: http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/ 国标省市区号下载:http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls?spm=a219a.7629140.0.0.qRW4KQ&file=2016.xls /// [XmlElement("province_code")] public string ProvinceCode { get; set; } /// /// 地址类型。取值范围:BUSINESS_ADDRESS:经营地址(默认) /// [XmlElement("type")] public string Type { get; set; } } }