using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ItemStoreDTO Data Structure. /// [Serializable] public class ItemStoreDTO : AopObject { /// /// 门店品牌名称 /// [XmlElement("brand_name")] public string BrandName { get; set; } /// /// 门店类目信息 英文分隔符,隔开 ; 示例:美食,火锅,川菜/重庆火锅 /// [XmlElement("category_name")] public string CategoryName { get; set; } /// /// 门店地址 /// [XmlElement("store_address")] public string StoreAddress { get; set; } /// /// 门店ID /// [XmlElement("store_id")] public string StoreId { get; set; } /// /// 门店LOGO /// [XmlElement("store_logo")] public string StoreLogo { get; set; } /// /// 门店名称 /// [XmlElement("store_name")] public string StoreName { get; set; } } }