1.增加盟讯公司业务逻辑相关适配 前后端增加配置参数“ISMX”进行控制

2.前端websocket取消心跳机制(原有心跳和断线重连当服务端网线断开后需要等tcp保活期到期后才能发现重连),自己实现心跳和重连
3.前端关闭后任占用后台线程问题修复
This commit is contained in:
hehaibing-1996
2024-05-25 17:25:27 +08:00
parent 472862a978
commit 00621bcd55
82 changed files with 3404 additions and 240 deletions

View File

@ -18,6 +18,18 @@ namespace WCS.BLL.Config
/// </summary>
public bool IsSameMatCodeOut { get; set; }
/// <summary>
/// 数据-数据库路径
/// </summary>
public string DataDbPath { get; set; }
/// <summary>
/// 日志-数据库路径
/// </summary>
public string LogDbPath { get; set; }
/// <summary>
/// 权限-数据库路径
/// </summary>
public string AuthDbPath { get; set; }
/// <summary>
/// 是否接入WMS系统
/// </summary>
public bool IsAccessWMS { get; set; }
@ -25,5 +37,25 @@ namespace WCS.BLL.Config
/// WMS系统
/// </summary>
public string? WMSUrl { get; set; }
#region
public bool IsMx { get; set; }
/// <summary>
/// 回传Mes入库/移库
/// </summary>
public string InputStockInStr { get; set; }
/// <summary>
/// 回传Mes出库
/// </summary>
public string BunkerOutStr { get; set; }
/// <summary>
/// 通过条码查询物料信息接口
/// </summary>
public string QueryBybar { get; set; }
/// <summary>
/// 后台配置的组别
/// </summary>
public string GroupName { get; set; }
#endregion
}
}