using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GDZZ.Application { public enum ResumeStatusEnum { /// /// 已发布 /// [Description("已发布")] Release = 0, /// /// 下架 /// [Description("下架")] OffShelf = 10, /// /// 审核未通过 /// [Description("审核未通过")] Rejected = 30, } }