|
|
using SqlSugar;
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Linq;
|
|
|
using System.Text;
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
namespace AucmaEms.Entity
|
|
|
{
|
|
|
/// <summary>
|
|
|
/// 测控点信息
|
|
|
///</summary>
|
|
|
[SugarTable("BASE_MONITOR_INFO")]
|
|
|
public class BaseMonitorInfo
|
|
|
{
|
|
|
/// <summary>
|
|
|
///
|
|
|
///</summary>
|
|
|
[SugarColumn(ColumnName = "OBJID")]
|
|
|
public string objid { get; set; }
|
|
|
/// <summary>
|
|
|
/// 测控点编号
|
|
|
///</summary>
|
|
|
[SugarColumn(ColumnName = "MONITOR_ID")]
|
|
|
public string monitorId { get; set; }
|
|
|
/// <summary>
|
|
|
/// 父级编号
|
|
|
///</summary>
|
|
|
[SugarColumn(ColumnName = "P_MONITOR_ID")]
|
|
|
public string pMonitorId { get; set; }
|
|
|
/// <summary>
|
|
|
/// 测控点名称
|
|
|
///</summary>
|
|
|
[SugarColumn(ColumnName = "MONITOR_NAME")]
|
|
|
public string monitorName { get; set; }
|
|
|
/// <summary>
|
|
|
/// 测控点类型
|
|
|
///</summary>
|
|
|
[SugarColumn(ColumnName = "MONITOR_TYPE")]
|
|
|
public decimal? monitorType { get; set; }
|
|
|
/// <summary>
|
|
|
/// 测控点位置
|
|
|
///</summary>
|
|
|
[SugarColumn(ColumnName = "MONITOR_ADDR")]
|
|
|
public string monitorAddr { get; set; }
|
|
|
/// <summary>
|
|
|
/// 测控点状态
|
|
|
///</summary>
|
|
|
[SugarColumn(ColumnName = "MONITOR_STATUS")]
|
|
|
public decimal? monitorStatus { get; set; }
|
|
|
/// <summary>
|
|
|
///
|
|
|
///</summary>
|
|
|
[SugarColumn(ColumnName = "CORRECT_VALUE")]
|
|
|
public decimal? correctValue { get; set; }
|
|
|
/// <summary>
|
|
|
/// PT值
|
|
|
///</summary>
|
|
|
[SugarColumn(ColumnName = "PT")]
|
|
|
public decimal pt { get; set; }
|
|
|
/// <summary>
|
|
|
/// CT值
|
|
|
///</summary>
|
|
|
[SugarColumn(ColumnName = "CT")]
|
|
|
public decimal ct { get; set; }
|
|
|
/// <summary>
|
|
|
///
|
|
|
///</summary>
|
|
|
[SugarColumn(ColumnName = "GRADE")]
|
|
|
public decimal? grade { get; set; }
|
|
|
/// <summary>
|
|
|
/// 记录时间
|
|
|
///</summary>
|
|
|
[SugarColumn(ColumnName = "RECORD_TIME")]
|
|
|
public DateTime? recordTime { get; set; }
|
|
|
/// <summary>
|
|
|
/// 测控点网络地址
|
|
|
///</summary>
|
|
|
[SugarColumn(ColumnName = "NETWORK_ADDRESS")]
|
|
|
public string networkAddress { get; set; }
|
|
|
}
|
|
|
}
|