using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CMS.Plugin.HIAWms.Domain.Shared.Enums { /// /// 托盘状态 /// [Description("托盘状态")] public enum ContainerStatusEnum { /// /// 空闲 /// [Description("空闲")] KOUXIAN = 1, /// /// 组盘 /// [Description("组盘")] ZUPANG = 2, /// /// 库位 /// [Description("库位")] KUWEI = 3, /// /// 虚拟库位 /// [Description("虚拟库位")] XUNIKUWEI = 4, /// /// 组托 /// [Description("组托")] ZUTUO = 5, /// /// 异常 /// [Description("异常")] EXCEPTION = 9, } }