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_mapping_product_eleme")] [PrimaryKey(new string[] { "Id" }, AutoIncrement = false)] public class MappingDishEleMe : BaseEntity { public MappingDishEleMe() { } /// /// 租户ID /// [JsonProperty(PropertyName = "tenantId")] [Column("tenantId")] public string TenantId { get; set; } /// /// 菜品ID /// [JsonProperty(PropertyName = "foodId")] [Column("foodId")] public string FoodId { get; set; }// 菜品ID /// /// 规格ID /// [JsonProperty(PropertyName = "specId")] [Column("specId")] public string SpecId { get; set; } /// /// 巨为商品ID /// [JsonProperty(PropertyName = "erpProductId")] [Column("erpProductId")] public string ErpProductId { get; set; } /// /// 巨为规格ID /// [JsonProperty(PropertyName = "erpSpecId")] [Column("erpSpecId")] public string ErpSpecId { get; set; } } }