using System; using System.Collections.Generic; using System.Text; namespace WIDESEA.Common { public enum OrderState { /// /// WMS读取到本地数据库 /// WMSReaded = 23, /// /// WMS待释放(部分完成) /// WMSExecuting = 24, /// /// WMS已完成该订单明细的处理 /// WMSFinished = 25, /// /// WMS已分配完成,任务执行中或待执行 /// WMSProgressed = 30, /// /// 关闭的订单 /// WMSClosed = 99 } }