using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KoubeiCateringBookShopinfoSyncModel Data Structure.
///
[Serializable]
public class KoubeiCateringBookShopinfoSyncModel : AopObject
{
///
/// 桌位保留时间(单位:分钟)
///
[XmlElement("book_keep_time")]
public long BookKeepTime { get; set; }
///
/// 预订文案
///
[XmlElement("book_text")]
public string BookText { get; set; }
///
/// 最长预订多少时间(单位:分钟)
///
[XmlElement("max_book_time")]
public long MaxBookTime { get; set; }
///
/// 包厢最大人数
///
[XmlElement("max_box_num")]
public long MaxBoxNum { get; set; }
///
/// 最小起订人数
///
[XmlElement("min_book_num")]
public long MinBookNum { get; set; }
///
/// 最少提前预订时间(单位:分钟)
///
[XmlElement("min_book_time")]
public long MinBookTime { get; set; }
///
/// 包厢最小人数
///
[XmlElement("min_box_num")]
public long MinBoxNum { get; set; }
///
/// 美味门店ID
///
[XmlElement("out_shop_id")]
public string OutShopId { get; set; }
///
/// 是否开启下单备注。如true表示开启,如false表示不开启。
///
[XmlElement("remark_flag")]
public bool RemarkFlag { get; set; }
///
/// 口碑门店ID
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
///
/// 门店状态。如BOOKABLE表示可预订,UNBOOKABLE表示不可预订。
///
[XmlElement("shop_state")]
public string ShopState { get; set; }
///
/// 是否有包厢。如true表示有,如false表示没有。
///
[XmlElement("support_box")]
public bool SupportBox { get; set; }
///
/// 是否支持秒订。如true表示支持,false表示不支持。
///
[XmlElement("support_quick_book")]
public bool SupportQuickBook { get; set; }
///
/// 时间戳,用作数据的版本号,取系统当前时间即可
///
[XmlElement("sync_timestamp")]
public string SyncTimestamp { get; set; }
}
}