28 lines
440 B
C#
28 lines
440 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace CowainHmi.Alarm
|
|||
|
|
{
|
|||
|
|
public enum AlarmType
|
|||
|
|
{
|
|||
|
|
Null = 0,
|
|||
|
|
错误 = 1,
|
|||
|
|
警告 = 2,
|
|||
|
|
信息 = 3,
|
|||
|
|
安全 = 4,
|
|||
|
|
未定义1 = 5,
|
|||
|
|
未定义2 = 6
|
|||
|
|
}
|
|||
|
|
public enum DataType
|
|||
|
|
{
|
|||
|
|
BIT,
|
|||
|
|
INT16,
|
|||
|
|
INT32,
|
|||
|
|
UINT16,
|
|||
|
|
UINT32
|
|||
|
|
}
|
|||
|
|
}
|