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