using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YouZanSDKStandard.Api.Domain { /// /// 联系地址 /// [Serializable] public class ContactAddressOpenModel { /// /// 地域编码 /// /// public int areaCode { get; set; } /// /// 省份 /// /// public string province { get; set; } /// /// 地级市 /// /// public string city { get; set; } /// /// 县级市,区 /// /// public string county { get; set; } /// /// 详细地址 /// /// public string address { get; set; } } }