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_guestshow_device")] [PrimaryKey(new string[] { "id" }, AutoIncrement = false)] public class GuestShowDevice :BaseEntity { public GuestShowDevice() { } /// /// 租户名称 /// [JsonProperty(PropertyName = "tenantId")] [Column("tenantId")] public string TenantId { get; set; } /// /// 客显型号名称 /// [JsonProperty(PropertyName = "name")] [Column("name")] public string Name { get; set; } /// /// 参数 /// [JsonProperty(PropertyName = "param")] [Column("param")] public string Param { get; set; } /// /// 是否本地数据 /// [JsonProperty(PropertyName = "isLocal")] [Column("isLocal")] public int IsLocal { get; set; } } }