using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SmartAddressInfo Data Structure. /// [Serializable] public class SmartAddressInfo : AopObject { /// /// 行政区代码-区,使用蚂蚁标准行政区划代码,可参考 https://render.alipay.com/p/f/fd-jp40xpc9/index.html /// [XmlElement("area_code")] public long AreaCode { get; set; } /// /// 行政区代码-市,使用蚂蚁标准行政区划代码,可参考 https://render.alipay.com/p/f/fd-jp40xpc9/index.html /// [XmlElement("city_code")] public long CityCode { get; set; } /// /// 自助售货机地址 /// [XmlElement("machine_address")] public string MachineAddress { get; set; } /// /// 行政区代码-省,使用蚂蚁标准行政区划代码,可参考 https://render.alipay.com/p/f/fd-jp40xpc9/index.html /// [XmlElement("province_code")] public long ProvinceCode { get; set; } } }