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