SignAddressInfo.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Aop.Api.Domain
  4. {
  5. /// <summary>
  6. /// SignAddressInfo Data Structure.
  7. /// </summary>
  8. [Serializable]
  9. public class SignAddressInfo : AopObject
  10. {
  11. /// <summary>
  12. /// 城市编码。请按照https://gw.alipayobjects.com/os/basement_prod/253c4dcb-b8a4-4a1e-8be2-79e191a9b6db.xlsx 表格中内容填写。 (参考资料: http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/)
  13. /// </summary>
  14. [XmlElement("city_code")]
  15. public string CityCode { get; set; }
  16. /// <summary>
  17. /// 国家编码,中国默认:156
  18. /// </summary>
  19. [XmlElement("country_code")]
  20. public string CountryCode { get; set; }
  21. /// <summary>
  22. /// 详细地址
  23. /// </summary>
  24. [XmlElement("detail_address")]
  25. public string DetailAddress { get; set; }
  26. /// <summary>
  27. /// 区县编码。请按照https://gw.alipayobjects.com/os/basement_prod/253c4dcb-b8a4-4a1e-8be2-79e191a9b6db.xlsx 表格中内容填写。 (参考资料: http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/)
  28. /// </summary>
  29. [XmlElement("district_code")]
  30. public string DistrictCode { get; set; }
  31. /// <summary>
  32. /// 纬度,浮点型,小数点后最多保留6位 如需要录入经纬度,请以高德坐标系为准,录入时请确保经纬度参数准确。高德经纬度查询:http://lbs.amap.com/console/show/picker
  33. /// </summary>
  34. [XmlElement("latitude")]
  35. public string Latitude { get; set; }
  36. /// <summary>
  37. /// 经度,浮点型, 小数点后最多保留6位。 如需要录入经纬度,请以高德坐标系为准,录入时请确保经纬度参数准确。高德经纬度查询:http://lbs.amap.com/console/show/picker
  38. /// </summary>
  39. [XmlElement("longitude")]
  40. public string Longitude { get; set; }
  41. /// <summary>
  42. /// 省份编码。请按照https://gw.alipayobjects.com/os/basement_prod/253c4dcb-b8a4-4a1e-8be2-79e191a9b6db.xlsx 表格中内容填写。 (参考资料: http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/)
  43. /// </summary>
  44. [XmlElement("province_code")]
  45. public string ProvinceCode { get; set; }
  46. }
  47. }