using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KbCodeInfoVO Data Structure. /// [Serializable] public class KbCodeInfoVO : AopObject { /// /// 创建口碑码的批次号 /// [JsonProperty("batch_id")] public long BatchId { get; set; } /// /// 口碑码图片(不带背景图) /// [JsonProperty("code_url")] public string CodeUrl { get; set; } /// /// 口碑码创建时间 /// [JsonProperty("create_time")] public string CreateTime { get; set; } /// /// 口碑码ID /// [JsonProperty("qr_code")] public string QrCode { get; set; } /// /// 口碑码物料图(带背景) /// [JsonProperty("resource_url")] public string ResourceUrl { get; set; } /// /// 口碑店铺ID /// [JsonProperty("shop_id")] public string ShopId { get; set; } /// /// 口碑门店名称 /// [JsonProperty("shop_name")] public string ShopName { get; set; } /// /// 物料模板 /// [JsonProperty("stuff_template")] public string StuffTemplate { get; set; } /// /// 物料模板描述 /// [JsonProperty("stuff_template_desc")] public string StuffTemplateDesc { get; set; } /// /// 口碑码类型描述 /// [JsonProperty("stuff_type_desc")] public string StuffTypeDesc { get; set; } /// /// 桌号 /// [JsonProperty("table_no")] public string TableNo { get; set; } } }