using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; using NPoco; namespace POSV.Entity { [Serializable] [JsonObject(MemberSerialization.OptIn)] [TableName("pos_kit_product")] [PrimaryKey(new string[] { "id" }, AutoIncrement = false)] public class KitProduct : BaseEntity { public KitProduct() { } /// /// 租户ID /// [JsonProperty(PropertyName = "tenantId")] [Column("tenantId")] public string TenantId { get; set; } /// /// 门店Id /// [JsonProperty(PropertyName = "storeId")] [Column("storeId")] public string StoreId { get; set; } /// /// 商品Id /// [JsonProperty(PropertyName = "productId")] [Column("productId")] public string ProductId { get; set; } /// /// 是否厨打(0否1是) /// [JsonProperty(PropertyName = "chudaFlag")] [Column("chudaFlag")] public string ChudaFlag { get; set; } /// /// 厨打方案 /// [JsonProperty(PropertyName = "chuda")] [Column("chuda")] public string Chuda { get; set; } /// /// 是否出品(0否1是) /// [JsonProperty(PropertyName = "chupinFlag")] [Column("chupinFlag")] public string ChupinFlag { get; set; } /// /// 出品方案 /// [JsonProperty(PropertyName = "chupin")] [Column("chupin")] public string Chupin { get; set; } /// /// 是否厨打标签打印(0否1是) /// [JsonProperty(PropertyName = "labelFlag")] [Column("labelFlag")] public string LabelFlag { get; set; } /// /// 厨打标签打印方案 /// [JsonProperty(PropertyName = "labelValue")] [Column("labelValue")] public string LabelValue { get; set; } /// /// 扩展字段1 /// [JsonProperty(PropertyName = "ext1")] [Column("ext1")] public string Ext1 { get; set; } /// /// 扩展字段2 /// [JsonProperty(PropertyName = "ext2")] [Column("ext2")] public string Ext2 { get; set; } /// /// 扩展字段3 /// [JsonProperty(PropertyName = "ext3")] [Column("ext3")] public string Ext3 { get; set; } } }