Setting_Init.cs
3.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OnlineStore.Common
{
/// <summary>
/// 记录配置的key
/// </summary>
public class Setting_Init
{
public static string Agv_Log_Open = "Agv_Log_Open";
public static string Server_Log_Open = "Server_Log_Open";
/// <summary>
/// 系统启动时自动启动料仓,=1时自动启动,并隐藏窗口,=0时不需要
/// </summary>
public static string App_AutoRun = "App_AutoRun";
/// <summary>
/// 系统主界面标题
/// </summary>
public static string App_Title = "App_Title";
public static string ConfigPath_Robot = "ConfigPath_Robot";
public static string ConfigPath_XRay = "ConfigPath_XRay";
public static string ConfigPath_InputEquip = "ConfigPath_InputEquip";
public static string ConfigPath_OutputEquip = "ConfigPath_OutputEquip";
/// <summary>
/// 需要识别的二维码类型,多个中间使用#分割
/// </summary>
public static string CodeType = "CodeType";
/// <summary>
/// 配置文件路径 Data Matrix ECC 200.dcm
/// </summary>
public static string CodeParamPath = "CodeParamPath";
public static string Config_Pwd = "Config_Pwd";
/// <summary>
/// 温控器类型,0=壁挂王字壳温湿度变送器,1=妙昕温湿度记录仪
/// </summary>
public static string HumitureControllerType = "HumitureControllerType";
/// <summary>
/// 流水线监听端口
/// </summary>
public static string TCPServerPort = "TCPServerPort";
public static string ACBaudRate = "ACBaudRate";
public static string OpenRFIDWrite = "OpenRFIDWrite";
public static string DefaultPWD = "DefaultPWD";
public static string AgvServerIp = "AgvServerIp";
public static string NeedScanCode = "NeedScanCode";
public static string CodeCount = "CodeCount";
public static string UseBuzzer = "UseBuzzer";
public static string ServerAddr = "ServerAddr";
/// <summary>
/// 检测到料串自动入料
/// </summary>
public static string AutoInput = "AutoInput";
/// <summary>
/// 进出轴待机点位,进出轴在此位置时,升降和旋转才可以走
/// </summary>
public static string InoutDefaultPosition = "InoutDefaultPosition";
public static string LabelName = "LabelName";
public static string PrinterName = "PrinterName";
public static string NeedPrintLabel = "NeedPrintLabel";
public static string StickingPosJudgment = "StickingPosJudgment";
public static string XRay_Data = "XRay_Data";
public static string ThresholdValue = "ThresholdValue";
public static string CounParamConfig = "CounParamConfig";
public static string DataPath = "DataPath";
public static string ResultMinCount = "ResultMinCount";
public static string ComPath_Config = "ComPath_Config";
/// <summary>
/// 贴标签时,放下标签后等待的时间
/// </summary>
public static string LabelWaitMS = "LabelWaitMS";
public static string GratingSignal = " GratingSignal";
/// <summary>
/// 启用贴标功能
/// </summary>
public static string UseLabel = "UseLabel";
public static string OutReelCenterX = "OutReelCenterX";
public static string OutReelCenter7 = "OutReelCenter7";
public static string OutReelCenter13 = "OutReelCenter13";
public static string OutReelCenter15 = "OutReelCenter15";
}
}