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 System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 报警记录实体类
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class LR_Alarmlog
|
|
|
|
|
{
|
|
|
|
|
#region 私有字段
|
|
|
|
|
|
|
|
|
|
private string _equip_Code;
|
|
|
|
|
private int _alarm_ID;
|
|
|
|
|
private string _alarm_OccurTime;
|
|
|
|
|
private string _alarm_ClearTime;
|
|
|
|
|
private int _alarm_Status;
|
|
|
|
|
private string _alarm_GUID;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region 公有属性
|
|
|
|
|
|
|
|
|
|
public string Equip_Code
|
|
|
|
|
{
|
|
|
|
|
get { return _equip_Code; }
|
|
|
|
|
set { _equip_Code = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int Alarm_ID
|
|
|
|
|
{
|
|
|
|
|
get { return _alarm_ID; }
|
|
|
|
|
set { _alarm_ID = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Alarm_OccurTime
|
|
|
|
|
{
|
|
|
|
|
get { return _alarm_OccurTime; }
|
|
|
|
|
set { _alarm_OccurTime = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Alarm_ClearTime
|
|
|
|
|
{
|
|
|
|
|
get { return _alarm_ClearTime; }
|
|
|
|
|
set { _alarm_ClearTime = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int Alarm_Status
|
|
|
|
|
{
|
|
|
|
|
get { return _alarm_Status; }
|
|
|
|
|
set { _alarm_Status = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Alarm_GUID
|
|
|
|
|
{
|
|
|
|
|
get { return _alarm_GUID; }
|
|
|
|
|
set { _alarm_GUID = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|