液晶标签剩余协议对接 编码

This commit is contained in:
hehaibing-1996
2024-12-10 19:09:43 +08:00
parent c94af9e987
commit 85a35ac34f
17 changed files with 393 additions and 149 deletions

View File

@ -4,6 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WCS.BLL.DbModels;
using WCS.BLL.DbModels.Task;
using WCS.Model;
using static WCS.BLL.HardWare.WarningLight;
@ -52,7 +53,7 @@ namespace WCS.BLL.HardWare
/// <summary>
/// 货架当前模式
/// </summary>
public Mode CurrentMode { get; set; }
public WCS.BLL.DbModels.Task.TaskModeEnum CurrentMode { get; set; }
/// <summary>
/// 设置到当前模式的时间
/// </summary>
@ -82,7 +83,7 @@ namespace WCS.BLL.HardWare
/// <summary>
/// 设置货架模式
/// </summary>
public void SetCurrentMode(Mode mode);
public void SetCurrentMode(TaskModeEnum mode);
/// <summary>
/// 货架进入入库模式
@ -135,12 +136,4 @@ namespace WCS.BLL.HardWare
/// </summary>
public void ShelfCheck();
}
public enum Mode
{
= 0,
= 1,
= 2,
= 3
}
}