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