1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.WinForms
- {
- public class HistoryAlertInfo
- {
-
-
-
- public long Id { set; get; }
-
-
-
- public string ObjectId { set; get; }
- public long SnapId { set; get; }
-
-
-
- public string ObjectName { set; get; }
-
-
-
- public DateTime AlertTime { 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; }
- }
- }
|