NewGaoKaoApi/PaymentSDK/AliPay/Domain/PosChooseDishGroupModel.cs

25 lines
587 B
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>
/// PosChooseDishGroupModel Data Structure.
/// </summary>
[Serializable]
public class PosChooseDishGroupModel : AopObject
{
/// <summary>
/// 组合菜的ID如果套餐有组合菜必传
/// </summary>
[XmlElement("group_id")]
public string GroupId { get; set; }
/// <summary>
/// 菜品中项目组的排序号
/// </summary>
[XmlElement("sort")]
public long Sort { get; set; }
}
}