1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace EnumType
| {
| public enum ETranAlarm
| {
| 无故障 = 0,
| 运行超时报警 = 1,
| 输送变频器报警 = 2,
| 马达保护器报警 = 3,
| 急停报警 = 4,
| 左超宽 = 5,
| 右超宽 = 6,
| 超高 = 7,
| 超重 = 8
| }
| }
|
|