31 lines
943 B
C#
31 lines
943 B
C#
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; }
|
||
}
|
||
}
|