using System.ComponentModel; namespace Admin.NET.Core { /// /// 签核状态 /// public enum IssueState { /// /// 不使用 /// [Description("不使用")] Unused = 1, /// /// 未签核 /// [Description("未签核")] Unfrozen = 2, /// /// 签核中 /// [Description("签核中")] Pending = 3, /// /// 已签核 /// [Description("已签核")] Active = 4 } }