using Newtonsoft.Json; using NPoco; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Entity { /// /// 菜品分析 /// [Serializable] public class HandOverProduct { public HandOverProduct() { } [Ignore] public int Type { get; set; }//打印类型 [Ignore] public string Name { get; set; }//打印名称 [Ignore] public string ItemCount { get; set; }//数量 [Ignore] public string ItemSuitQuantity { get; set; }//套餐数量 [Ignore] public string ItemAmount { get; set; }//应收金额 /// /// 分类ID /// [JsonProperty(PropertyName = "typeId")] [Column("typeId")] public string TypeId { get; set; }//分类ID /// /// 交班单号 /// [JsonProperty(PropertyName = "typeName")] [Column("typeName")] public string TypeName { get; set; }//分类名称 /// /// 商品名称 /// [JsonProperty(PropertyName = "productName")] [Column("productName")] public string ProductName { get; set; }// 商品名称 /// /// 商品编号 /// [JsonProperty(PropertyName = "productNo")] [Column("productNo")] public string ProductNo { get; set; }// 商品编号 /// /// 商品规格 /// [JsonProperty(PropertyName = "specName")] [Column("specName")] public string SpecName { get; set; }// 商品规格 /// /// 数量 /// [JsonProperty(PropertyName = "count")] [Column("count")] public decimal Count { get; set; }// 销售数量 /// /// 套餐数量 /// [JsonProperty(PropertyName = "suitQuantity")] [Column("suitQuantity")] public decimal SuitQuantity { get; set; }// 套餐数量 /// /// 金额 /// [JsonProperty(PropertyName = "amount")] [Column("amount")] public decimal Amount { get; set; }// 金额 } }