qin
2025-03-06 06eff2094e17b8ed3452e44a6d77b729a7621919
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
namespace IBox.WinFrmUI
{
    public class DataGridMonitorViewModel
    {
        public long GroupID { get; set; }
 
        public string GroupName { get; set; }
 
        public long MonitorID { get; set; }
 
        public string MonitorName { get; set; }
 
        public long SignalID { get; set; }
 
        public string SignalName { get; set; }
 
        public string UnitName { get; set; }
 
        public string DataValue { get; set; }
 
        public string DataTime { get; set; }
 
        public string Flags { get; set; }
 
        public long SignalTypeID { get; set; }
 
        public eDataStatus DataStatus { get; set; }
 
        public string Description { get; set; }
 
        public bool IsEnable { get; set; }
        public int? Operator {  get; set; }
        public string BusAddress { get; set; }
        public int BusType { get; set; }
        public string Operands {  get; set; }
 
        public int Accuracy { get; set; }
 
        public int AdcType {  get; set; }
 
        public decimal UpperRange { get; set; }
        public decimal LowerRange { get; set;}
    }
}