ningshuxia
2022-12-12 e81ca048ef4e9345e904b74ffffd3e8413d18a7e
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
45
46
47
48
49
50
51
52
53
54
55
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.DataProvider
{
    public class DebugRecord
    {
        public string ObjectId { get; set; }
        public DateTime DataTime { get; set; }
        public int ChRate { get; set; }
        public DateTime SendTime { get; set; }
        public int PointLenOfPeriod { get; set; }
        public int PointLenOfGroup { get; set; }
        public string AlarmValue { get; set; }
        public int RunStatus { get; set; }
        public string Wave { get; set; }
        public double Rpm { get; set; }
        public double Frequency { get; set; }
        public double AmpHalf { get; set; }
        public double PhaseHalf { get; set; }
        public double AmpX1 { get; set; }
        public double AmpX2 { get; set; }
        public double AmpX3 { get; set; }
        public double PhaseX1 { get; set; }
        public double PhaseX2 { get; set; }
        public double PhaseX3 { get; set; }
        public double DcValue { get; set; }
        public double MaxValue { get; set; }
        public double MaxValueP { get; set; }
        public double MinValue { get; set; }
        public double EffectiveValue { get; set; }
        public double AvgValue { get; set; }
        public double OverValue { get; set; }
        public double Inclination { get; set; }
        public double Warpage { get; set; }
        public double EffectiveSpeed { get; set; }
        public double Displacement { get; set; }
        public string InstrumentType { get; set; }
        public string InstrumentIp { get; set; }
        public int SensorType { get; set; }
        public double ChMagnification { get; set; }
        public double ChCalParams { get; set; }
        public double ChCoffParams { get; set; }
        public int ChIntegType { get; set; }
        public double ChSencivity { get; set; }
        public double ChCoefficient1X { get; set; }
        public double ChCoefficient2X { get; set; }
    }
 
 
 
}