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