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.

65 lines
1.6 KiB
C#

using Newtonsoft.Json;
using NPoco;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Entity
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
[TableName("pos_make_burden")]
[PrimaryKey(new string[] { "id" }, AutoIncrement = false)]
public class MakeBurden : BaseEntity
{
public MakeBurden()
{
}
/// <summary>
/// 租户ID
/// </summary>
[JsonProperty(PropertyName = "tenantId")]
[Column("tenantId")]
public string TenantId { get; set; }
/// <summary>
/// 做法ID
/// </summary>
[JsonProperty(PropertyName = "makeId")]
[Column("makeId")]
public string MakeId { get; set; }
/// <summary>
/// 配料产品ID
/// </summary>
[JsonProperty(PropertyName = "burdenProductId")]
[Column("burdenProductId")]
public string BurdenProductId { get; set; }
/// <summary>
/// 配料产品规格ID
/// </summary>
[JsonProperty(PropertyName = "burdenSpecId")]
[Column("burdenSpecId")]
public string BurdenSpecId { get; set; }
/// <summary>
/// 销售单位ID
/// </summary>
[JsonProperty(PropertyName = "salesUnitId")]
[Column("salesUnitId")]
public string SalesUnitId { get; set; }
/// <summary>
/// 销售量
/// </summary>
[JsonProperty(PropertyName = "salesAmount")]
[Column("salesAmount")]
public decimal SalesAmount { get; set; }
}
}