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

38 lines
1005 B
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 System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KoubeiCateringKbcodeCreateModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringKbcodeCreateModel : AopObject
{
/// <summary>
/// 口碑码绑定的门店或者桌号信息列表
/// </summary>
[JsonProperty("bind_info_list")]
public List<KbCodeBindInfoVO> BindInfoList { get; set; }
/// <summary>
/// 请求流水ID用于幂等控制
/// </summary>
[JsonProperty("request_id")]
public string RequestId { get; set; }
/// <summary>
/// 物料模板(可以不填,系统会根据码类型默认一个模板)
/// </summary>
[JsonProperty("stuff_template")]
public string StuffTemplate { get; set; }
/// <summary>
/// 生成码的类型桌码TABLE_PASTER门店码DOOR_PASTER
/// </summary>
[JsonProperty("stuff_type")]
public string StuffType { get; set; }
}
}