19 lines
338 B
C#
19 lines
338 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Enums
|
|
{
|
|
/// <summary>
|
|
/// 电梯运行状态
|
|
/// </summary>
|
|
public enum EnumRunStatus
|
|
{
|
|
停梯 = 0,
|
|
上运行 = 2,
|
|
下运行 = 2,
|
|
}
|
|
}
|