1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
| using System;
| using System.Collections.Generic;
| using System.ComponentModel;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace WIDESEAWCS_Common.StationEnum
| {
| public enum StationEnum
| {
| /// <summary>
| /// 后底板1线区域
| /// </summary>
| [Description("后底板1线区域")]
| Rearbaseplate1 = 1,
|
| /// <summary>
| /// 后底板2线区域
| /// </summary>
| [Description("后底板2线区域")]
| Rearbaseplate2 = 2,
|
| /// <summary>
| /// 前底板区域
| /// </summary>
| [Description("前底板区域")]
| Frontfloorpanel = 2,
|
| /// <summary>
| /// 站台状态为:启用
| /// </summary>
| [Description("启用")]
| Enable = 1,
|
| /// <summary>
| /// 站台状态为:停用
| /// </summary>
| [Description("停用")]
| Disable = 2,
|
| /// <summary>
| /// 站台状态为:有任务
| /// </summary>
| [Description("有任务")]
| Thereisatask = 3,
|
|
|
| }
| }
|
|