You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Admin.Core.Model
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 灌注告警
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("PERFUSION_ALARM", "AUCMA_SCADA")]
|
|
|
|
|
public class Perfusion_Alarm
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 灌注
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsIdentity = true, IsPrimaryKey = true)]
|
|
|
|
|
public float ObjId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱体码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "PERFUSION_BOXCODE")]
|
|
|
|
|
public string PerfusionBoxcode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 报警状态码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "PERFUSION_STATUS")]
|
|
|
|
|
public short PerfusionStatus { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 报警信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "PERFUSION_ALARM")]
|
|
|
|
|
public string PerfusionAlarm { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 灌注是否完成
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "PERFUSION_COMPLETED")]
|
|
|
|
|
public string PerfusionCompleted { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建人
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "CREATED_BY")]
|
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "CREATED_TIME")]
|
|
|
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 更新人
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "UPDATED_BY")]
|
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 更新时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "UPDATED_TIME")]
|
|
|
|
|
public DateTime UpdatedTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|