You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.4 KiB
49 lines
1.4 KiB
using System;
|
|
using System.Data;
|
|
using QMAPP.Entity;
|
|
using QMFrameWork.Data.Attributes;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace QMAPP.FJC.Entity.Equipment
|
|
{
|
|
[DBTable(TableName = "T_TM_ALARM")]
|
|
[DataContract]
|
|
public class AlarmEntity
|
|
{
|
|
[DataMember]
|
|
[DBColumn(ColumnName = "ID", DataType = DbType.String,IsKey = true)]
|
|
public string id { get; set; }
|
|
|
|
[DataMember]
|
|
[DBColumn(ColumnName = "IPADDR", DataType = DbType.String)]
|
|
public string ipaddr { get; set; }
|
|
|
|
[DataMember]
|
|
[DBColumn(ColumnName = "MACHINECODE", DataType = DbType.String)]
|
|
public string MACHINECODE { get; set; }
|
|
|
|
[DataMember]
|
|
[DBColumn(ColumnName = "ALARMDESCRIPTION", DataType = DbType.String)]
|
|
public string alarmdescription { get; set; }
|
|
|
|
[DataMember]
|
|
[DBColumn(ColumnName = "ALARMGENTIME", DataType = DbType.String)]
|
|
public DateTime ALARMGENTIME { get; set; }
|
|
[DataMember]
|
|
public string alarmgentime { get; set; }
|
|
|
|
[DataMember]
|
|
[DBColumn(ColumnName = "ALARMCLRTIME", DataType = DbType.String)]
|
|
public DateTime ALARMCLRTIME { get; set; }
|
|
[DataMember]
|
|
public string alarmclrtime { get; set; }
|
|
|
|
[DataMember]
|
|
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.String)]
|
|
public DateTime CREATEDATE { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|