using Newtonsoft.Json; using NPoco; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Entity.Report { [Serializable] public class SalesSummaryCategory { public SalesSummaryCategory() { } /// /// 分类名称 /// [JsonProperty(PropertyName = "typeName")] [Column("typeName")] public string TypeName { get; set; } // 分类名称 /// /// 分类总数量 /// [JsonProperty(PropertyName = "sumCount")] [Column("sumCount")] public int SumCount { get; set; } // 分类总数量 /// /// 数量比例 /// [Ignore] public string CountScale { get; set; } // 数量比例 /// /// 分类总金额 /// [JsonProperty(PropertyName = "sumMoney")] [Column("sumMoney")] public decimal SumMoney { get; set; } // 分类总金额 /// /// 金额比例 /// [Ignore] public string MoneyScale { get; set; } // 金额比例 /// /// 实收金额 /// [JsonProperty(PropertyName = "sumRealMoney")] [Column("sumRealMoney")] public decimal SumRealMoney { get; set; } // 实收金额 /// /// 实收金额比例 /// [Ignore] public string SumRealMoneyScale { get; set; } // 实收金额比例 } }