using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; using NPoco; namespace JwKdsV.Entity.Product { /// /// 套菜明细 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class ProductExt : Product { /// /// 分类名称 /// [JsonProperty(PropertyName = "typeName")] [Column("typeName")] public string TypeName { get; set; } /// /// 计量单位名称 /// [JsonProperty(PropertyName = "unitName")] [Column("unitName")] public string UnitName { get; set; } /// /// 商品默认规格名称 /// [JsonProperty(PropertyName = "specName")] [Column("specName")] public string SpecName { get; set; } /// /// 商品默认规格Id /// [JsonProperty(PropertyName = "specId")] [Column("specId")] public string SpecId { get; set; } /// /// 厨打方案 /// [JsonProperty(PropertyName = "chuda")] [Column("chuda")] public string Chuda { get; set; } /// /// 厨打标识 /// [JsonProperty(PropertyName = "chudaFlag")] [Column("chudaFlag")] public string ChudaFlag { get; set; } /// /// 出品方案 /// [JsonProperty(PropertyName = "chupin")] [Column("chupin")] public string Chupin { get; set; } /// /// 出品标识 /// [JsonProperty(PropertyName = "chupinFlag")] [Column("chupinFlag")] public string ChupinFlag { get; set; } /// /// 厨打标签标识 /// [JsonProperty(PropertyName = "chuDaLabelFlag")] [Column("chuDaLabelFlag")] public string ChuDaLabelFlag { get; set; } /// /// 厨打标签方案 /// [JsonProperty(PropertyName = "chuDaLabel")] [Column("chuDaLabel")] public string ChuDaLabel { get; set; } /// /// 厨显方案 /// [JsonProperty(PropertyName = "chuxian")] [Column("chuxian")] public string Chuxian { get; set; } /// /// 厨显标识 /// [JsonProperty(PropertyName = "chuxianFlag")] [Column("chuxianFlag")] public string ChuxianFlag { get; set; } /// /// 厨显超时(分钟) /// [JsonProperty(PropertyName = "chuxianTime")] [Column("chuxianTime")] public int ChuxianTime { get; set; } /// /// kds出品方案 /// [JsonProperty(PropertyName = "kdsChupin")] [Column("kdsChupin")] public string KdsChupin { get; set; } /// /// kds出品标识 /// [JsonProperty(PropertyName = "kdsChupinFlag")] [Column("kdsChupinFlag")] public string KdsChupinFlag { get; set; } = "1"; /// /// 出品超时(分钟) /// [JsonProperty(PropertyName = "kdsChupinTime")] [Column("kdsChupinTime")] public int KdsChupinTime { get; set; } /// /// 沽清对象 /// [JsonIgnore] [Ignore] public SaleClear SaleClear { get; set; } /// /// 分页使用 /// [JsonIgnore] [Ignore] public int Pager { get; set; } } }