using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayEcoRenthouseCommunityBaseinfoSyncModel Data Structure. /// [Serializable] public class AlipayEcoRenthouseCommunityBaseinfoSyncModel : AopObject { /// /// 商圈编码 /// [XmlElement("bus_code")] public string BusCode { get; set; } /// /// 商圈所在纬度 /// [XmlElement("bus_lat")] public string BusLat { get; set; } /// /// 商圈所在经度 /// [XmlElement("bus_lng")] public string BusLng { get; set; } /// /// 商圈名称 /// [XmlElement("bus_name")] public string BusName { get; set; } /// /// 商圈覆盖半径(单位:米) /// [XmlElement("bus_radius")] public long BusRadius { get; set; } /// /// 城市编码 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 城市所在纬度 /// [XmlElement("city_lat")] public string CityLat { get; set; } /// /// 城市所在经度 /// [XmlElement("city_lng")] public string CityLng { get; set; } /// /// 城市名称 /// [XmlElement("city_name")] public string CityName { get; set; } /// /// 小区/大楼编码 /// [XmlElement("community_code")] public string CommunityCode { get; set; } /// /// 小区/大楼所在纬度 /// [XmlElement("community_lat")] public string CommunityLat { get; set; } /// /// 小区/大楼所在经度 /// [XmlElement("community_lng")] public string CommunityLng { get; set; } /// /// 小区/大楼名称 /// [XmlElement("community_name")] public string CommunityName { get; set; } /// /// 小区/大楼弄号 /// [XmlElement("community_nong")] public string CommunityNong { get; set; } /// /// 小区/大楼街道 /// [XmlElement("community_street")] public string CommunityStreet { get; set; } /// /// 小区/大楼标识类型 1:小区 2:大楼 /// [XmlElement("community_tag")] public string CommunityTag { get; set; } /// /// 行政区域编码 /// [XmlElement("district_code")] public string DistrictCode { get; set; } /// /// 行政区域所在纬度 /// [XmlElement("district_lat")] public string DistrictLat { get; set; } /// /// 行政区域所在经度 /// [XmlElement("district_lng")] public string DistrictLng { get; set; } /// /// 行政区域名称 /// [XmlElement("district_name")] public string DistrictName { get; set; } /// /// 地铁线地铁站关系 /// [XmlArray("subway_stations")] [XmlArrayItem("string")] public List SubwayStations { get; set; } } }