2026-08-28 14:12:02 +08:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace JinYuan.Models
|
|
|
|
|
{
|
|
|
|
|
public class ConstValue
|
|
|
|
|
{
|
2026-08-31 13:54:07 +08:00
|
|
|
|
2026-08-28 14:12:02 +08:00
|
|
|
/// <summary>
|
2026-08-31 13:54:07 +08:00
|
|
|
/// 料框查询接口标识
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const string INTER_QueryTray = "QueryTrayUrl";
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 料框解绑接口标识
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const string INTER_UnBindTray = "unBindTrayUrl";
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 定义车间偏移编号
|
2026-08-28 14:12:02 +08:00
|
|
|
/// 操作日志存储
|
|
|
|
|
/// </summary>
|
2026-08-31 13:54:07 +08:00
|
|
|
public static readonly Dictionary<string, short> WorkshopMap = new Dictionary<string, short>
|
|
|
|
|
{
|
|
|
|
|
{ "601", 1 },
|
|
|
|
|
{ "602", 2 },
|
|
|
|
|
{ "603", 3 },
|
|
|
|
|
{ "604", 4 }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#region 日志文件夹名称
|
2026-08-28 14:12:02 +08:00
|
|
|
public const string USER_LOG = "OperaLog";
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|