using System.ComponentModel; namespace Hotline.Share.Enums.Article { public enum EBulletinState { /// /// 审批中 /// [Description("审批中")] InReview = 1, /// /// 审批通过 /// [Description("审批通过")] ReviewPass = 2, /// /// 审批驳回 /// [Description("审批驳回")] ReviewNoPass = 3, } }