48 lines
1.2 KiB
C#
48 lines
1.2 KiB
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// KbCodeBindInfoVO Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class KbCodeBindInfoVO : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 商家餐桌摆放的区域名称(预留字段,暂不使用)
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("area_name")]
|
|||
|
|
public string AreaName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 餐桌最大就餐人数(预留字段,暂不使用)
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("max_pepole_num")]
|
|||
|
|
public long MaxPepoleNum { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 餐桌就餐的最少人数(预留字段,暂不使用)
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("min_pepole_num")]
|
|||
|
|
public string MinPepoleNum { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 口碑店铺ID
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("shop_id")]
|
|||
|
|
public string ShopId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// table_no对应的中文名称。(预留字段,暂不使用)
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("table_name")]
|
|||
|
|
public string TableName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 商家收银系统录入的点菜桌号(生成桌码时,必填)
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("table_no")]
|
|||
|
|
public string TableNo { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|