Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KbCodeBindInfoVO.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

48 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}