using System.ComponentModel; namespace Hotline.Share.Enums.KnowledgeBase; /// /// 知识状态 /// public enum EKnowledgeStatus { /// /// 全部 /// [Description("全部")] All = -1, /// /// 待提交 /// [Description("待提交")] Drafts = 0, /// /// 审批中 /// [Description("审批中")] Auditing = 1, /// /// 失败 /// [Description("失败")] Failed = 2, /// /// 已上架 /// [Description("已上架")] OnShelf = 3, /// /// 已下架 /// [Description("已下架")] OffShelf = 4, /// /// 已驳回 /// [Description("已驳回")] Revert = 5, /// /// 已过期 /// [Description("已过期")] Overdue = 6, /// /// 下架审批中 /// [Description("下架审批中")] OffShelfAudit = 7, /// /// 草稿 /// [Description("草稿")] NewDrafts = 8, }