using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.Enum { public enum TaskRelocationStatusEnum { /// /// 新建移库任务 /// RelocationNew = 300, /// /// 移库任务执行中 /// SC_RelocationExecuting = 140, /// /// 移库任务完成 /// SC_RelocationFinish = 145, } }