Files
wcs/WCS.Model/WebSocketModel/SolveWarningRequesr.cs
hehaibing-1996 2f9ca87876 1.报错机制增加未扫描上架的提供库位屏蔽机制
2.库位查询增加当前屏蔽模组库位百分比查询
3.货架库位屏蔽、模组屏蔽后增加当前禁用模组库位百分比查询
2024-11-05 16:32:33 +08:00

20 lines
374 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.WebSocketModel
{
public class SolveWarningRequest : RequestBase
{
public Guid Guid { get; set; }
public SolveTypeEnum SolveType { get; set; }
}
public enum SolveTypeEnum
{
= 0,
= 1,
= 2,
}
}