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