using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareModel { /// /// 设备的任务类型枚举 /// public enum DeviceTaskTypeEnum { /// /// 组盘入库 /// 组盘入库 = 1, /// /// 出库 /// 出库 = 2, /// /// 空托转运到拆盘机入口 /// 空托转运到拆盘机入口 = 3, /// /// 空托转运到立体库 /// 空托转运到立体库 = 4, /// /// 空托缓存位转运 位置1009到位置1011 /// 空托缓存位转运 = 5, /// /// 立库空托到拆盘机入口 [EditBy shaocx,2022-04-13] /// 立库空托到拆盘机入口 = 6, /// /// 拆盘机入口到拆盘机(1014到1020) [EditBy shaocx,2022-04-13] /// 拆盘机入口到拆盘机 = 7 } }