using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// KoubeiCateringTablecodeQueryResponse.
///
public class KoubeiCateringTablecodeQueryResponse : AopResponse
{
///
/// 返回值为shop_code表示只返回了门店码 返回值为table_code表示返回了桌码跟门店码
///
[JsonProperty("code_flag")]
public string CodeFlag { get; set; }
///
/// 门店id
///
[JsonProperty("shop_id")]
public string ShopId { get; set; }
///
/// 桌码
///
[JsonProperty("table_num")]
public string TableNum { get; set; }
}
}