NewGaoKaoApi/PaymentSDK/AliPay/Domain/ParamModel.cs

97 lines
2.9 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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