81 lines
2.1 KiB
C#
81 lines
2.1 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// KoubeiQualityTestShieldOrderCreateModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class KoubeiQualityTestShieldOrderCreateModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 枚举类型 ADD_DISH: C端加菜 DELETE_DISH: C端减菜
|
||
/// </summary>
|
||
[XmlElement("action_name")]
|
||
public string ActionName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 加购单号
|
||
/// </summary>
|
||
[XmlElement("batch_no")]
|
||
public string BatchNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 菜谱id
|
||
/// </summary>
|
||
[XmlElement("cook_id")]
|
||
public string CookId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 菜品信息
|
||
/// </summary>
|
||
[XmlArray("dish_list")]
|
||
[XmlArrayItem("shield_dish_list")]
|
||
public List<ShieldDishList> DishList { get; set; }
|
||
|
||
/// <summary>
|
||
/// 扩展信息
|
||
/// </summary>
|
||
[XmlElement("ext_infos")]
|
||
public string ExtInfos { get; set; }
|
||
|
||
/// <summary>
|
||
/// 口碑订单号 第一次加购时不填,在后付订单上继续加购时需要传入
|
||
/// </summary>
|
||
[XmlElement("order_id")]
|
||
public string OrderId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 外部业务号
|
||
/// </summary>
|
||
[XmlElement("out_biz_no")]
|
||
public string OutBizNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商户ID
|
||
/// </summary>
|
||
[XmlElement("partner_id")]
|
||
public string PartnerId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 点餐类型 ADVANCE_PAYMENT:先付; AFTER_PAYMENT:后付;
|
||
/// </summary>
|
||
[XmlElement("pay_style")]
|
||
public string PayStyle { get; set; }
|
||
|
||
/// <summary>
|
||
/// 口碑门店ID
|
||
/// </summary>
|
||
[XmlElement("shop_id")]
|
||
public string ShopId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 桌码,扫桌码订单必传
|
||
/// </summary>
|
||
[XmlElement("table_no")]
|
||
public string TableNo { get; set; }
|
||
}
|
||
}
|