NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringPosPaymodeCre...

43 lines
1.0 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>
/// KoubeiCateringPosPaymodeCreateModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringPosPaymodeCreateModel : AopObject
{
/// <summary>
/// 固定面额
/// </summary>
[XmlElement("fixed_amount")]
public string FixedAmount { get; set; }
/// <summary>
/// 是否固定面额false:否true:是)
/// </summary>
[XmlElement("fixed_switch")]
public bool FixedSwitch { get; set; }
/// <summary>
/// 计入实收比例
/// </summary>
[XmlElement("income_ratio")]
public string IncomeRatio { get; set; }
/// <summary>
/// 支付方式名称
/// </summary>
[XmlElement("pay_name")]
public string PayName { get; set; }
/// <summary>
/// 门店id
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}