You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.2 KiB
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMobilePublicGisGetResponse.
/// </summary>
public class AlipayMobilePublicGisGetResponse : AopResponse
{
/// <summary>
/// 精确度
/// </summary>
[XmlElement("accuracy")]
public string Accuracy { get; set; }
/// <summary>
/// 经纬度所在位置
/// </summary>
[XmlElement("city")]
public string City { get; set; }
/// <summary>
/// 结果码
/// </summary>
[XmlElement("code")]
public string Code { get; set; }
/// <summary>
/// 纬度信息
/// </summary>
[XmlElement("latitude")]
public string Latitude { get; set; }
/// <summary>
/// 经度信息
/// </summary>
[XmlElement("longitude")]
public string Longitude { get; set; }
/// <summary>
/// 结果信息
/// </summary>
[XmlElement("msg")]
public string Msg { get; set; }
/// <summary>
/// 经纬度对应位置所在的省份
/// </summary>
[XmlElement("province")]
public string Province { get; set; }
}
}