| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using System;
- namespace RTCommunicatorBase;
- public class DataQueryCondition
- {
- public DateTime StartTime { get; set; }
- public DateTime EndTime { get; set; }
- public byte Mini8Index { get; set; }
- public byte ChannelIndex { get; set; }
- }
- public enum AlarmType
- {
- Undefined = 0,
- CapsOverFlow = 1,
- FloorOverFlow = 2,
- TcBroken = 3
- }
- public enum HeaterType
- {
- Undefined,
- GaseLine,
- ForeLine,
- }
- public struct ST_ALARM
- {
- public byte Mini8Index { get; set; }
- public byte ChannelIndex { get; set; }
- public float PV { get; set; }
- public float Caps { get; set; }
- public float Floor { get; set; }
- public AlarmType AlarmType { get; set; }
- }
- public struct ST_CHANNEL
- {
- public byte Mini8Index { get; set; }
- public byte ChannelIndex { get; set; }
- public float PV { get; set; }
- public float Caps { get; set; }
- public float Floor { get; set; }
- }
- public class ST_CHANNEL_Notify
- {
- public byte Mini8Index { get; set; }
- public byte ChannelIndex { get; set; }
- public float PV { get; set; }
- public float Caps { get; set; }
- public float Floor { get; set; }
- }
- public class ST_ALARM_Notify
- {
- public byte Mini8Index { get; set; }
- public byte ChannelIndex { get; set; }
- public float PV { get; set; }
- public float Caps { get; set; }
- public float Floor { get; set; }
- public AlarmType AlarmType { get; set; }
- public HeaterType HeaterType { get; set; }
- }
|