using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.WarehouseMgr.Entities.Enums { /// /// 电梯运行状态 /// public enum EnumRunStatus { 停梯 = 0, 上运行 = 2, 下运行 = 2, } }