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.

64 lines
1.6 KiB
C#

9 months ago
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()
{
}
/// <summary>
/// 分类名称
/// </summary>
[JsonProperty(PropertyName = "typeName")]
[Column("typeName")]
public string TypeName { 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; } // 实收金额比例
}
}