namespace Admin.NET.Application; /// /// 作业容器 /// [Description("作业容器")] public enum OperationsContainerEnum { /// /// 发货区域容器 /// [Description("发货区域容器")] SHIPPING = 1, /// /// 在途容器 /// [Description("在途容器")] INTRANSIT = 2, /// /// 平库区域容器 /// [Description("平库区域容器")] PKQYKW = 3, /// /// 收货区域容器 /// [Description("收货区域容器")] STAGING = 4, /// /// 待检区域容器 /// [Description("待检区域容器")] QMLOT = 5, /// /// 不良品区域容器 /// [Description("不良品区域容器")] SQE = 6, /// /// 分拣区域容器 /// [Description("分拣区域容器")] FJQY = 7, /// /// 线边区域容器 /// [Description("线边区域容器")] LS = 8 } /// /// 作业容器类型 /// [Description("作业容器类型")] public enum OperationsContainerTypeEnum { /// /// 虚拟容器 /// [Description("虚拟容器")] VIR = 1, }