using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IWareCommon.Enum.Srm { public enum ESrmState { 空闲 = 0, 取货定位 = 1, 取货中 = 2, 放货定位 = 3, 放货中 = 4, 移动定位中 = 5, 放货完成 = 6, 报警空间但有货 = 7, 维修状态 = 98, 报警未自动 = 99, } }