using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ParamModel Data Structure.
///
[Serializable]
public class ParamModel : AopObject
{
///
/// 是否开启取餐柜(false:否,true:是)
///
[XmlElement("cabinet_enabled")]
public bool CabinetEnabled { get; set; }
///
/// 账单金额位数
///
[XmlElement("carry_rule")]
public string CarryRule { get; set; }
///
/// 就餐模式( takeMeal:取餐模式(默认); foodDelivery:送餐模式 )
///
[XmlElement("dining_mode")]
public string DiningMode { get; set; }
///
/// KDS显示模式(singleDish:单菜,mergingOrder:并单)
///
[XmlElement("kds_display_mode")]
public string KdsDisplayMode { get; set; }
///
/// 是否开启KDS(false:否,true:是)
///
[XmlElement("kds_enabled")]
public bool KdsEnabled { get; set; }
///
/// 是否开启KDS语音叫号(false:否,true:是)
///
[XmlElement("kds_voice_call_enabled")]
public bool KdsVoiceCallEnabled { get; set; }
///
/// 是否支持一单多柜(false:否,true:是)
///
[XmlElement("multi_cabinet_per_order_allowed")]
public bool MultiCabinetPerOrderAllowed { get; set; }
///
/// 是否开通饿了么(false:否;true:是)
///
[XmlElement("open_ele")]
public bool OpenEle { get; set; }
///
/// 异常操作原因(false:否;true:是)
///
[XmlElement("reason_flag")]
public bool ReasonFlag { get; set; }
///
/// 门店id
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
///
/// 门店名称
///
[XmlElement("shop_name")]
public string ShopName { get; set; }
///
/// 是否有桌台(false:否;true:是)
///
[XmlElement("table_flag")]
public bool TableFlag { get; set; }
///
/// 金额尾数规则( yuan:元; horn:角; cent:分(默认) )
///
[XmlElement("tail_number_rule")]
public string TailNumberRule { get; set; }
///
/// 外卖是否自动接单(false:否;true:是)
///
[XmlElement("takeout_auto_receipt")]
public bool TakeoutAutoReceipt { get; set; }
}
}