using Newtonsoft.Json; using NPoco; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Entity.Report { [Serializable] public class SalesSummarySpec { public SalesSummarySpec() { } /// /// 规格名称 /// [JsonProperty(PropertyName = "specName")] [Column("specName")] public string SpecName { 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; } } }