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.

26 lines
683 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Mesnac.Action.ChemicalWeighing.Entity
{
/// <summary>
/// 报警参数实体类
/// </summary>
[Serializable]
public class PmtAlarmInfo
{
public int ID { get; set; }
public string Equip_Code { get; set; }
public int Alarm_ID { get; set; }
public string AlarmPLC { get; set; }
public string AlarmBlock { get; set; }
public string AlarmAlias { get; set; }
public string Alarm_Cn_Info { get; set; }
public string Alarm_En_Info { get; set; }
public string Alarm_Level { get; set; }
}
}