using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; using NPoco; namespace POSV.Entity { [Serializable] [JsonObject(MemberSerialization.OptIn)] [TableName("pos_product_makedetail")] [PrimaryKey(new string[] { "id" } , AutoIncrement = false)] public class ProductMakeDetail:BaseEntity { public ProductMakeDetail() { } /// /// 租户ID /// [JsonProperty(PropertyName = "tenantId")] [Column("tenantId")] public string TenantId { get; set; } /// /// 编号 /// [JsonProperty(PropertyName = "no")] [Column("no")] public string No { get; set; } /// /// 拼音简码 /// [JsonProperty(PropertyName = "spell")] [Column("spell")] public string Spell { get; set; } /// /// 做法类型 /// [JsonProperty(PropertyName = "typeId")] [Column("typeId")] public string TypeId { get; set; } /// /// 做法加价 /// [JsonProperty(PropertyName = "addPrice")] [Column("addPrice")] public decimal AddPrice { get; set; } /// /// 管理数量(0否1是) /// [JsonProperty(PropertyName = "qtyFlag")] [Column("qtyFlag")] public int QtyFlag { get; set; } /// /// 做法说明 /// [JsonProperty(PropertyName = "description")] [Column("memo")] public string Memo { get; set; } /// /// 显示序号 /// [JsonProperty(PropertyName = "orderNo")] [Column("orderNo")] public int OrderNo { get; set; } /// /// 做法颜色 /// [JsonProperty(PropertyName = "color")] [Column("color")] public string Color { get; set; } /// /// 是否私有做法(0-否;1-是;) /// [JsonProperty(PropertyName = "prvFlag")] [Column("prvFlag")] public int PrvFlag { get; set; } /// /// 扩展字段1 /// [JsonProperty(PropertyName = "ext1")] [Column("ext1")] public string Ext1 { get; set; } /// /// 扩展字段2 /// [JsonProperty(PropertyName = "ext2")] [Column("ext2")] public string Ext2 { get; set; } /// /// 扩展字段3 /// [JsonProperty(PropertyName = "ext3")] [Column("ext3")] public string Ext3 { get; set; } } }