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.
24 lines
549 B
C#
24 lines
549 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.Entity
|
|
{
|
|
/// <summary>
|
|
/// 简单报警信息类
|
|
/// </summary>
|
|
[Serializable]
|
|
public class SimpleAlarmInfo
|
|
{
|
|
#region 公有属性
|
|
public string AlramPLC { get; set; }
|
|
public string AlarmBlock { get; set; }
|
|
public int Alarm_ID { get; set; }
|
|
public string Alarm_Alias { get; set; }
|
|
public string Alarm_Cn { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|