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.

67 lines
1.7 KiB
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.StoreBusiness
{
/// <summary>
/// 获取单品销售汇总
/// </summary>
/// <typeparam name="T"></typeparam>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class SalesOrderSummaryResponse
{
/// <summary>
/// 分类ID
/// </summary>
[JsonProperty(PropertyName = "typeId")]
public string TypeId { get; set; }
/// <summary>
/// 分类名称
/// </summary>
[JsonProperty(PropertyName = "typeName")]
public string TypeName { get; set; }
/// <summary>
/// 商品名称
/// </summary>
[JsonProperty(PropertyName = "productName")]
public string ProductName { get; set; }
/// <summary>
/// 规格名称
/// </summary>
[JsonProperty(PropertyName = "specName")]
public string SpecName { get; set; }
/// <summary>
/// 商品编号
/// </summary>
[JsonProperty(PropertyName = "productNo")]
public string ProductNo { get; set; }
/// <summary>
/// 销售数量
/// </summary>
[JsonProperty(PropertyName = "count")]
public decimal Count { get; set; }
/// <summary>
/// 套餐数量
/// </summary>
[JsonProperty(PropertyName = "suitQuantity")]
public decimal SuitQuantity { get; set; }
/// <summary>
/// 应收金额
/// </summary>
[JsonProperty(PropertyName = "amount")]
public decimal Amount { get; set; }
}
}