SettingString.cs
3.0 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
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
{
//任务名称
public const string Standby = "Standby";
public const string CheckShelf = "CheckShelf";
public const string PutShelfOn = "PutShelfOn";
public const string _Big = "_Big";
public const string _Steel = "_Steel";
public const string _Box = "_Box";
public const string TakeShelfOff = "TakeShelfOff";
public const string Temp1 = "Temp1";
public const string Temp2 = "Temp2";
public const string DoorAirOut = "DoorAirOut";
public const string AutoCharge = "AutoCharge";
public const string PlaySound = "PlaySound";
public const string StopSound = "StopSound";
public const string Docking = "Docking";
public const string Leave = "Leave";
public const string Enter = "Enter";
public const string Init = "Init";
public const string LIFT_D2 = "LIFT_D2";
public const string LIFT_C1 = "LIFT_C1";
public const string storage = "storage";
//任务状态
public const string Wait = "Wait";
public const string Done = "Done";
public const string Aborted = "Aborted";
public const string Executing = "Executing";
public const string Invalid = "Invalid";
public const string File_AgvInfo = "File_AgvInfo";
public const string File_AgvTaskInfo = "File_AgvTaskInfo";
public const string File_NodeInfo = "File_NodeInfo";
public const string FileName_AgvContext = "FileName_AgvContext";
public const string IsUse = "IsUse";
public const string RFID = "RFID";
public const string Warehouse = "JIGStorage";
public const string Cancel = "Cancel";
public const string ChargeThreshold = "ChargeThreshold";
public const string WaitTimeout = "WaitTimeout";
public const string StandTimeout = "StandTimeout";
public const string _1D = "1D";
public const string _1C = "1C";
public const string _2D = "2D";
public const string _2C = "2C";
public const string _3D = "3D";
public const string _3C = "3C";
public const string _4D = "4D";
public const string _4C = "4C";
#region 配置名
public const string ITS = "ITS";
public const string httpServer ="http.server";
public const string log4net_configname = "log4net_configname";
public const string ITS_UpdateLine = "ITS_UpdateLine";
public const string Lift_Server = "Lift_Server";
public const string AppIdentity = "AppIdentity";
public const string Lift_Names = "Lift_Names";
public const string IsDebug = "IsDebug";
#endregion
#region 点位
public const string ShelfBuff = "ShelfBuff";
#endregion
}
}