Setting_Str.cs
1.9 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
using System;
using System.Collections.Generic;
using System.Text;
namespace Common
{
public class Setting_Str
{
public const string HttpServer = "HttpServer";
#region AGV
public const string BatteryLimit = "BatteryLimit";
//AGV任务名字
public const string init = "init";
/// <summary>
/// 转向
/// </summary>
public const string Turn = "Turn";
/// <summary>
/// 拾取/进料
/// </summary>
public const string PickUp = "PickUp";
/// <summary>
/// 放下/出料
/// </summary>
public const string PutDown = "PutDown";
/// <summary>
/// 充电
/// </summary>
public const string Charge = "Charge";
/// <summary>
/// 播放音乐
/// </summary>
public const string PlaySound = "PlaySound";
/// <summary>
/// 停止音乐
/// </summary>
public const string StopSound = "StopSound";
public const string standby = "standby";
public const string outplace = "outplace";
#endregion
#region 日志名称
public const string AppLog = "AppLog";
public const string JobLog = "Job";
public const string RobotLog = "Robot";
public const string TcpServerLog = "TcpServer";
public const string TcpClientLog = "TcpClient";
#endregion
public const string WebApiPort = "WebApiPort";
public const string App_Title = "App_Title";
public const string ShelfPlace = "ShelfPlace";
public const string SharedLine = "SharedLine";
public const string OpenBigShelf = "OpenBigShelf";
public const string OpenCheckLoadIO = "OpenCheckLoadIO";
public const string Config_Pwd = "Config_Pwd";
public const string TmpPlaceIsCharge = "TmpPlaceIsCharge";
}
}