You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.5 KiB
C#

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()
{
}
/// <summary>
/// 规格名称
/// </summary>
[JsonProperty(PropertyName = "specName")]
[Column("specName")]
public string SpecName { get; set; }
/// <summary>
///规格总数量
/// </summary>
[JsonProperty(PropertyName = "sumCount")]
[Column("sumCount")]
public int SumCount { get; set; }
/// <summary>
/// 数量比例
/// </summary>
[Ignore]
public string CountScale { get; set; }
/// <summary>
///总金额
/// </summary>
[JsonProperty(PropertyName = "sumMoney")]
[Column("sumMoney")]
public decimal SumMoney { get; set; }
/// <summary>
/// 金额比例
/// </summary>
[Ignore]
public string MoneyScale { get; set; }
/// <summary>
/// 实收金额
/// </summary>
[JsonProperty(PropertyName = "sumRealMoney")]
[Column("sumRealMoney")]
public decimal SumRealMoney { get; set; }
/// <summary>
/// 实收金额比例
/// </summary>
[Ignore]
public string SumRealMoneyScale { get; set; }
}
}