using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.Core.Model
{
///
/// 灌注告警
///
[SugarTable("PERFUSION_RECORD", "AUCMA_SCADA")]
public class Perfusion_Alarm
{
///
/// 灌注
///
[SugarColumn(ColumnName = "OBJ_ID", IsIdentity = true, IsPrimaryKey = true)]
public float ObjId { get; set; }
///
/// 箱体码
///
[SugarColumn(ColumnName = "PERFUSION_BOXCODE")]
public string PerfusionBoxcode { get; set; }
///
/// 报警状态码
///
[SugarColumn(ColumnName = "PERFUSION_STATUS")]
public int PerfusionStatus { get; set; }
///
/// 报警信息
///
[SugarColumn(ColumnName = "PERFUSION_ALARM")]
public string PerfusionAlarm { get; set; }
///
/// 异常是否取消
///
[SugarColumn(ColumnName = "PERFUSION_COMPLETED")]
public string PerfusionCompleted { 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; }
}
}