using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CityShopModel Data Structure. /// [Serializable] public class CityShopModel : AopObject { /// /// 城市id /// [XmlElement("city_id")] public string CityId { get; set; } /// /// 城市名称 /// [XmlElement("city_name")] public string CityName { get; set; } /// /// 区id /// [XmlElement("district_id")] public string DistrictId { get; set; } /// /// 区名称 /// [XmlElement("district_name")] public string DistrictName { get; set; } /// /// 判断门店是否是简易门店 /// [XmlElement("pos_shop")] public bool PosShop { get; set; } /// /// 省份id /// [XmlElement("province_id")] public string ProvinceId { get; set; } /// /// 省份名称 /// [XmlElement("province_name")] public string ProvinceName { get; set; } /// /// 门店id /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 门店名称 /// [XmlElement("shop_name")] public string ShopName { get; set; } /// /// 门店状态 /// [XmlElement("shop_status")] public string ShopStatus { get; set; } } }