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