using System.ComponentModel; namespace YBEE.EQM.Core { /// /// 公共状态 /// public enum CommonStatus { /// /// 正常 /// [Description("正常")] ENABLE = 1, /// /// 停用 /// [Description("停用")] DISABLE = 2, /// /// 删除 /// [Description("删除")] DELETED = 3 } }