using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoRenthouseCommunityInfoSyncModel Data Structure. /// [Serializable] public class AlipayEcoRenthouseCommunityInfoSyncModel : AopObject { /// /// 小区地址(与经度纬度,POI三者选填其一) /// [XmlElement("address")] public string Address { get; set; } /// /// 城市国标码(与城市名称二者选填一个),参考http://www.stats.gov.cn/tjsj/tjbz/xzqhdm/201703/t20170310_1471429.html /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 城市名称 /// [XmlElement("city_name")] public string CityName { get; set; } /// /// 经度|纬度(经度) /// [XmlElement("community_locations")] public string CommunityLocations { get; set; } /// /// 小区名称 /// [XmlElement("community_name")] public string CommunityName { get; set; } /// /// 坐标系(0:百度,1:高德) /// [XmlElement("coordsys")] public string Coordsys { get; set; } /// /// 行政区县国标码(与行政区县名称选填一个),参考http://www.stats.gov.cn/tjsj/tjbz/xzqhdm/201703/t20170310_1471429.html /// [XmlElement("district_code")] public string DistrictCode { get; set; } /// /// 行政区县名称 /// [XmlElement("district_name")] public string DistrictName { get; set; } /// /// POI编号 /// [XmlElement("poi")] public string Poi { get; set; } } }