NewGaoKaoApi/PaymentSDK/AliPay/Domain/PosDishPracticeModel.cs

43 lines
1.1 KiB
C#
Raw Permalink 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>
/// PosDishPracticeModel Data Structure.
/// </summary>
[Serializable]
public class PosDishPracticeModel : AopObject
{
/// <summary>
/// 加价类型 add 加法 如果有做法,必传
/// </summary>
[XmlElement("increase_mode")]
public string IncreaseMode { get; set; }
/// <summary>
/// 加价价格,如果有做法必传
/// </summary>
[XmlElement("increase_price")]
public string IncreasePrice { get; set; }
/// <summary>
/// 做法的ID如果有做法必传
/// </summary>
[XmlElement("practice_id")]
public string PracticeId { get; set; }
/// <summary>
/// 做法的名字
/// </summary>
[XmlElement("practice_name")]
public string PracticeName { get; set; }
/// <summary>
/// 做法的排序字段
/// </summary>
[XmlElement("sort")]
public long Sort { get; set; }
}
}