using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KoubeiCateringPosParamModifyModel Data Structure.
///
[Serializable]
public class KoubeiCateringPosParamModifyModel : AopObject
{
///
/// 账单金额位数
///
[XmlElement("carry_rule")]
public string CarryRule { get; set; }
///
/// 就餐模式( takeMeal:取餐模式(默认); foodDelivery:送餐模式 )
///
[XmlElement("dining_mode")]
public string DiningMode { 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; }
}
}