| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- 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 float WorkingOutput { 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 float WorkingOutput { 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 float WorkingOutput { 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 float WorkingOutput { get; set; }
- public AlarmType AlarmType { get; set; }
- public HeaterType HeaterType { get; set; }
- }
|