using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Infrastructure.Enumeration { /// /// 审核状态 /// public enum AuditStatus { /// /// 完成 /// [Description("完成")] Completed = 100, /// /// 录入 /// [Description("录入")] Entry = 0, /// /// 取消 /// [Description("取消")] Cancel = 97, /// /// 审核 /// [Description("审核")] Checked = 10 } }