using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// SignAddressInfo Data Structure.
///
[Serializable]
public class SignAddressInfo : AopObject
{
///
/// 城市编码。请按照https://gw.alipayobjects.com/os/basement_prod/253c4dcb-b8a4-4a1e-8be2-79e191a9b6db.xlsx 表格中内容填写。 (参考资料: http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/)
///
[XmlElement("city_code")]
public string CityCode { get; set; }
///
/// 国家编码,中国默认:156
///
[XmlElement("country_code")]
public string CountryCode { get; set; }
///
/// 详细地址
///
[XmlElement("detail_address")]
public string DetailAddress { get; set; }
///
/// 区县编码。请按照https://gw.alipayobjects.com/os/basement_prod/253c4dcb-b8a4-4a1e-8be2-79e191a9b6db.xlsx 表格中内容填写。 (参考资料: http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/)
///
[XmlElement("district_code")]
public string DistrictCode { get; set; }
///
/// 纬度,浮点型,小数点后最多保留6位 如需要录入经纬度,请以高德坐标系为准,录入时请确保经纬度参数准确。高德经纬度查询:http://lbs.amap.com/console/show/picker
///
[XmlElement("latitude")]
public string Latitude { get; set; }
///
/// 经度,浮点型, 小数点后最多保留6位。 如需要录入经纬度,请以高德坐标系为准,录入时请确保经纬度参数准确。高德经纬度查询:http://lbs.amap.com/console/show/picker
///
[XmlElement("longitude")]
public string Longitude { get; set; }
///
/// 省份编码。请按照https://gw.alipayobjects.com/os/basement_prod/253c4dcb-b8a4-4a1e-8be2-79e191a9b6db.xlsx 表格中内容填写。 (参考资料: http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/)
///
[XmlElement("province_code")]
public string ProvinceCode { get; set; }
}
}