NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoRenthouseCommunity...

141 lines
3.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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