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_authc")] [PrimaryKey(new string[] { "id" },AutoIncrement = false)] public class Authc : BaseEntity { public Authc() { } /** * 租户ID */ [JsonProperty(PropertyName = "tenantId")] [Column("tenantId")] public string TenantId { get; set; } /** * 计算机名称 */ [JsonProperty(PropertyName = "compterName")] [Column("compterName")] public string CompterName { get; set; } /** * Mac地址 */ [JsonProperty(PropertyName = "macAddress")] [Column("macAddress")] public string MacAddress { get; set; } /** * 硬盘序列号 */ [JsonProperty(PropertyName = "diskSerialNumber")] [Column("diskSerialNumber")] public string DiskSerialNumber { get; set; } /** * CPU序列号 */ [JsonProperty(PropertyName = "cpuSerialNumber")] [Column("cpuSerialNumber")] public string CpuSerialNumber { get; set; } /// /// 认证的门店ID /// [JsonProperty(PropertyName = "storeId")] [Column("storeId")] public string StoreId { get; set; } /// /// 认证的门店编号 /// [JsonProperty(PropertyName = "storeNo")] [Column("storeNo")] public string StoreNo { get; set; } /// /// 认证的门店名称 /// [JsonProperty(PropertyName = "storeName")] [Column("storeName")] public string StoreName { get; set; } /// /// 门店类型ID /// [JsonProperty(PropertyName = "stroeTypeId")] [Column("stroeTypeId")] public string StroeTypeId { get; set; } /// /// 门店类型编号 /// [JsonProperty(PropertyName = "stroeTypeNo")] [Column("stroeTypeNo")] public string StroeTypeNo { get; set; } /// /// 门店类型标识 /// [JsonProperty(PropertyName = "stroeTypeSign")] [Column("stroeTypeSign")] public string StroeTypeSign { get; set; } /// /// 门店类型标识 /// [JsonProperty(PropertyName = "stroeTypeName")] [Column("stroeTypeName")] public string StroeTypeName { get; set; } /// /// 门店地址 /// [JsonProperty(PropertyName = "stroeAddress")] [Column("stroeAddress")] public string StroeAddress { get; set; } /// /// 认证的POS编号 /// [JsonProperty(PropertyName = "posNo")] [Column("posNo")] public string PosNo { get; set; } /// /// 认证的POS的ID /// [JsonProperty(PropertyName = "posId")] [Column("posId")] public string PosId { 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; } } }