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() { } /// /// 租户ID /// [JsonProperty(PropertyName = "tenantId")] [Column("tenantId")] public string TenantId { get; set; } /// /// 做法ID /// [JsonProperty(PropertyName = "makeId")] [Column("makeId")] public string MakeId { get; set; } /// /// 配料产品ID /// [JsonProperty(PropertyName = "burdenProductId")] [Column("burdenProductId")] public string BurdenProductId { get; set; } /// /// 配料产品规格ID /// [JsonProperty(PropertyName = "burdenSpecId")] [Column("burdenSpecId")] public string BurdenSpecId { get; set; } /// /// 销售单位ID /// [JsonProperty(PropertyName = "salesUnitId")] [Column("salesUnitId")] public string SalesUnitId { get; set; } /// /// 销售量 /// [JsonProperty(PropertyName = "salesAmount")] [Column("salesAmount")] public decimal SalesAmount { get; set; } } }