NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringDishRuleQuery...

31 lines
943 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>
/// KoubeiCateringDishRuleQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringDishRuleQueryModel : AopObject
{
/// <summary>
/// 规则的类型,枚举值如下: DEFAULT_IN_CARTS // "开台默认菜"; NON_WHOLE_ORDER_DISCOUNT", //"不参与整单优惠的菜"; MUST_IN_ORDER // "下单必点菜";
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 菜品id
/// </summary>
[XmlElement("dish_id")]
public string DishId { get; set; }
/// <summary>
/// 当查询规则类型biz_type为DEFAULT_IN_CARTS即开台默认菜的时候本项必填。
/// </summary>
[XmlElement("sku_id")]
public string SkuId { get; set; }
}
}