12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.WinForms
- {
-
-
-
- public class RealTimeAlertInfo
- {
-
-
-
- public long Id { set; get; }
-
-
-
- public string ObjectId { set; get; }
-
-
-
- public string ObjectName { set; get; }
-
-
-
- public long SnapId { set; get; }
-
-
-
- public DateTime? LastUpdateTime { set; get; }
-
-
-
- public string AlertText { set; get; }
-
-
-
- public string RankName { set; get; }
-
-
-
- public string CategoryName { set; get; }
-
-
-
- public string FaultCause { set; get; }
-
-
-
- public string HaltType { set; get; }
-
-
-
- public string FaultCategory { set; get; }
- }
- }
|