using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.Dtos { /// /// 报警代码实体类 /// public class AlarmCode { public int Id { get; set; } public string PreID { get; set; } /// /// 机台编号 /// public string maccode { get; set; } /// /// 机台名称 /// public string macname { get; set; } /// /// 厂商 /// public string supplier { get; set; } /// /// 制程代码 /// public string pcode { get; set; } /// /// 制程名称 /// public string pname { get; set; } /// /// 机台型号 /// public string macmodel { get; set; } /// /// 机台型号名称 /// public string macmodelname { get; set; } /// /// 报警时间 /// public DateTime? ptime { get; set; } /// /// 报警代码 /// public string name { get; set; } /// /// 报警描述 /// public string description { get; set; } /// /// 事件代码 /// public string eventCode { get; set; } public int RegionId { get; set; } public string RegionName { get; set; } /// /// 园区 /// public string FactoryName { get; set; } /// /// 楼层 /// public string FloorName { get; set; } public string PlantName { get; set; } public string ChAlarm { get; set; } } }