using System.ComponentModel; namespace Myshipping.Core; /// /// 通知公告状态 /// public enum NoticeStatus { /// /// 草稿 /// [Description("草稿")] DRAFT = 0, /// /// 发布 /// [Description("发布")] PUBLIC = 1, /// /// 撤回 /// [Description("撤回")] CANCEL = 2, /// /// 删除 /// [Description("删除")] DELETED = 3 }