using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiCateringQueueShopinfoSyncModel Data Structure. /// [Serializable] public class KoubeiCateringQueueShopinfoSyncModel : AopObject { /// /// 过号是否作废。返回0表示作废;非0表示不作废,并以数字表示过号延几桌。如返回1,表示延一桌,返回2则是延两桌。 /// [XmlElement("discard_off")] public long DiscardOff { get; set; } /// /// 等位优惠信息 /// [XmlElement("discount_desc")] public string DiscountDesc { get; set; } /// /// 取号距离(单位:米) /// [XmlElement("distance_limit")] public long DistanceLimit { get; set; } /// /// 过号描述 /// [XmlElement("notice")] public string Notice { get; set; } /// /// 美味门店ID /// [XmlElement("out_shop_id")] public string OutShopId { get; set; } /// /// 口碑门店ID /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 是否显示号单等待时间。如返回true,则表示是;如返回false,则表示否。 /// [XmlElement("show_order_wait_time")] public bool ShowOrderWaitTime { get; set; } /// /// 是否显示排队等待时间。如返回true,则表示是;如返回false,则表示否。 /// [XmlElement("show_wait_time")] public bool ShowWaitTime { get; set; } /// /// 时间戳,用作数据的版本号,取系统当前时间即可 /// [XmlElement("sync_timestamp")] public string SyncTimestamp { get; set; } } }