using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KoubeiCateringQueueShopqueueinfoSyncModel Data Structure. /// [Serializable] public class KoubeiCateringQueueShopqueueinfoSyncModel : AopObject { /// /// 美味门店ID /// [XmlElement("out_shop_id")] public string OutShopId { get; set; } /// /// 队列信息 /// [XmlArray("queue_list")] [XmlArrayItem("shop_queue")] public List QueueList { get; set; } /// /// 口碑门店ID /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 时间戳,用作数据的版本号,取系统当前时间即可 /// [XmlElement("sync_timestamp")] public string SyncTimestamp { get; set; } } }