1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace EnumType
| {
| public enum EDeviceId
| {
| 一号堆垛机 = 1,
| 二号堆垛机 = 2,
| 三号堆垛机 = 3,
| 四号堆垛机 = 4,
| 五号堆垛机 = 5,
| 六号堆垛机 = 6,
| 七号堆垛机 = 7,
| 八号堆垛机 = 8,
| 九号堆垛机 = 9,
|
| }
| }
|
|