using System.ComponentModel; namespace Znyc.Recruitment.Admin.Commons.Enums { /// /// 公共状态 /// public enum CommonStatus { /// /// 正常 /// [Description("正常")] ENABLE = 1, /// /// 停用 /// [Description("停用")] DISABLE = -1, /// /// 删除 /// [Description("删除")] DELETED = -2, /// /// 审核中 /// [Description("审核中")] REVIEW = 0 } }