using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KbOrderShopModel Data Structure.
///
[Serializable]
public class KbOrderShopModel : AopObject
{
///
/// 门店ID
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
///
/// 店铺名
///
[XmlElement("shop_name")]
public string ShopName { get; set; }
///
/// 00007
///
[XmlElement("store_id")]
public string StoreId { get; set; }
}
}