接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,48 @@
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; }
}
}