using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DOAN.Model { /// /// 设备表含义 /// [Tenant(1)] [SugarTable("reflex_account")] public class ReflexAccount { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 设备ID /// [SugarColumn(ColumnName = "fk_device_id")] public int? FkDeviceId { get; set; } /// /// FkTenantId /// [SugarColumn(ColumnName = "fk_tenant_id")] public int? FkTenantId { get; set; } /// /// 表名 /// [SugarColumn(ColumnName = "table_code")] public string TableCode { get; set; } /// /// 设备名称 /// [SugarColumn(ColumnName = "table_name")] public string TableName { get; set; } /// /// Status /// public int? Status { get; set; } } }