using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.Core.Model.Model_New { /// /// 灌注设备状态表 /// [SugarTable("PERFUSION_DEVICESTATUS", "AUCMA_SCADA")] public class Perfusion_DeviceStatus { /// /// 主键 /// [SugarColumn(ColumnName = "OBJ_ID", IsIdentity = true, IsPrimaryKey = true)] public int ObjId { get; set; } /// /// 设备名称;Perfusion:灌注 /// [SugarColumn(ColumnName = "PERFUSION_DEVICETYPE")] public string PerfusionDevicetype { get; set; } /// /// 设备状态1运行、2停机、3故障 /// [SugarColumn(ColumnName = "PERFUSION_STATUS")] public int PerfusionStatus { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "CREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "CREATED_TIME")] public DateTime CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "UPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "UPDATED_TIME")] public DateTime UpdatedTime { get; set; } } }