123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Domain
- {
-
-
-
- [Serializable]
- public class SignAddressInfo : AopObject
- {
-
-
-
- [XmlElement("city_code")]
- public string CityCode { get; set; }
-
-
-
- [XmlElement("country_code")]
- public string CountryCode { get; set; }
-
-
-
- [XmlElement("detail_address")]
- public string DetailAddress { get; set; }
-
-
-
- [XmlElement("district_code")]
- public string DistrictCode { get; set; }
-
-
-
- [XmlElement("latitude")]
- public string Latitude { get; set; }
-
-
-
- [XmlElement("longitude")]
- public string Longitude { get; set; }
-
-
-
- [XmlElement("province_code")]
- public string ProvinceCode { get; set; }
- }
- }
|