SettingString.cs
2.8 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Common
{
public static class SettingString
{
#region 配置名
public const string log4net_configname = "log4net.config";
public const string UseAIOBOX = "UseAIOBOX";
public const string Line_Config = "Line_Config";
public const string ServiceBaseUrl = "ServiceBaseUrl";
public const string Lift_Ids = "Lift_Ids";
public const string Lift_Buffs = "Lift_Buffs";
#endregion
#region 电梯
/// <summary>
/// DI,D2-任务应答,_Response
/// </summary>
public static string _Response = "_Response";
/// <summary>
/// DI,D2-到达1F,_AtFirst
/// </summary>
public static string _AtFirst = "_AtFirst";
/// <summary>
/// DI,D2-到达3F,_AtThird
/// </summary>
public static string _AtThird = "_AtThird";
/// <summary>
/// DI,D2-到达4F,_AtFourth
/// </summary>
public static string _AtFourth = "_AtFourth";
public static string _HasEmptyFinished = "_HasEmptyFinished";
public static string _HasFullFinished = "_HasFullFinished";
/// <summary>
/// DI,D2-门已开,_DoorOpen
/// </summary>
public static string _DoorOpen = "_DoorOpen";
/// <summary>
/// DI,D2-故障中,_InFault
/// </summary>
public static string _InFault = "_InFault";
/// <summary>
/// DI,D2-运行中,_InRun
/// </summary>
public static string _InRun = "_InRun";
/// <summary>
/// DO,D2-AGV请求,_AGVRequest
/// </summary>
public static string _AGVRequest = "_AGVRequest";
/// <summary>
/// DO,D2-AGV离开,_AGVLeave
/// </summary>
public static string _AGVLeave = "_AGVLeave";
/// <summary>
/// DO,D2-AGV呼叫1F,_FirstCall
/// </summary>
public static string _FirstCall = "_FirstCall";
/// <summary>
/// DO,D2-AGV呼叫3F,_ThirdCall
/// </summary>
public static string _ThirdCall = "_ThirdCall";
/// <summary>
/// DO,D2-AGV呼叫4F,_FourthCall
/// </summary>
public static string _FourthCall = "_FourthCall";
/// <summary>
/// DO,D2-送料信号1F,_RunToFirst
/// </summary>
public static string _RunToFirst = "_RunToFirst";
/// <summary>
/// DO,D2-送料信号3F,_RunToThird
/// </summary>
public static string _RunToThird = "_RunToThird";
/// <summary>
/// DO,D2-送料信号4F,_RunToFourth
/// </summary>
public static string _RunToFourth = "_RunToFourth";
#endregion
}
}