20260831功能同步:

1. 不同车间区分料框查询、料框解绑接口
2. 注释电池型号逻辑
3. 打开电池状况界面
This commit is contained in:
Administrator
2026-08-31 13:54:07 +08:00
parent 6dfac6d986
commit c2ed98d52d
26 changed files with 1646 additions and 13 deletions
+21 -1
View File
@@ -8,10 +8,30 @@ namespace JinYuan.Models
{
public class ConstValue
{
#region 日志文件夹名称
/// <summary>
/// 料框查询接口标识
/// </summary>
public const string INTER_QueryTray = "QueryTrayUrl";
/// <summary>
/// 料框解绑接口标识
/// </summary>
public const string INTER_UnBindTray = "unBindTrayUrl";
/// <summary>
/// 定义车间偏移编号
/// 操作日志存储
/// </summary>
public static readonly Dictionary<string, short> WorkshopMap = new Dictionary<string, short>
{
{ "601", 1 },
{ "602", 2 },
{ "603", 3 },
{ "604", 4 }
};
#region 日志文件夹名称
public const string USER_LOG = "OperaLog";
#endregion
}