using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiCateringPosPaymodeCreateModel Data Structure. /// [Serializable] public class KoubeiCateringPosPaymodeCreateModel : AopObject { /// /// 固定面额 /// [XmlElement("fixed_amount")] public string FixedAmount { get; set; } /// /// 是否固定面额(false:否;true:是) /// [XmlElement("fixed_switch")] public bool FixedSwitch { get; set; } /// /// 计入实收比例 /// [XmlElement("income_ratio")] public string IncomeRatio { get; set; } /// /// 支付方式名称 /// [XmlElement("pay_name")] public string PayName { get; set; } /// /// 门店id /// [XmlElement("shop_id")] public string ShopId { get; set; } } }