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.

96 lines
2.3 KiB
C#

using Newtonsoft.Json;
using NPoco;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Entity
{
/// <summary>
/// 菜品分析
/// </summary>
[Serializable]
public class HandOverProduct
{
public HandOverProduct()
{
}
[Ignore]
public int Type { get; set; }//打印类型
[Ignore]
public string Name { get; set; }//打印名称
[Ignore]
public string ItemCount { get; set; }//数量
[Ignore]
public string ItemSuitQuantity { get; set; }//套餐数量
[Ignore]
public string ItemAmount { get; set; }//应收金额
/// <summary>
/// 分类ID
/// </summary>
[JsonProperty(PropertyName = "typeId")]
[Column("typeId")]
public string TypeId { get; set; }//分类ID
/// <summary>
/// 交班单号
/// </summary>
[JsonProperty(PropertyName = "typeName")]
[Column("typeName")]
public string TypeName { get; set; }//分类名称
/// <summary>
/// 商品名称
/// </summary>
[JsonProperty(PropertyName = "productName")]
[Column("productName")]
public string ProductName { get; set; }// 商品名称
/// <summary>
/// 商品编号
/// </summary>
[JsonProperty(PropertyName = "productNo")]
[Column("productNo")]
public string ProductNo { get; set; }// 商品编号
/// <summary>
/// 商品规格
/// </summary>
[JsonProperty(PropertyName = "specName")]
[Column("specName")]
public string SpecName { get; set; }// 商品规格
/// <summary>
/// 数量
/// </summary>
[JsonProperty(PropertyName = "count")]
[Column("count")]
public decimal Count { get; set; }// 销售数量
/// <summary>
/// 套餐数量
/// </summary>
[JsonProperty(PropertyName = "suitQuantity")]
[Column("suitQuantity")]
public decimal SuitQuantity { get; set; }// 套餐数量
/// <summary>
/// 金额
/// </summary>
[JsonProperty(PropertyName = "amount")]
[Column("amount")]
public decimal Amount { get; set; }// 金额
}
}