using System.ComponentModel; namespace NCC.Extend.Entitys.Enums { /// /// 设备状态枚举 /// public enum DeviceCellStatusEnum { /// /// 启用 /// [Description("空闲")] 空闲 = 1, /// /// 停用 /// [Description("停用")] 停用 = 2, /// /// 充电 /// [Description("充电")] 充电 = 3, /// /// 损坏 /// [Description("损坏")] 损坏 = 4, /// /// 已租接 /// [Description("已租接")] 已租接 = 5, } }