using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GDZZ.Application.Enum
{
public enum ResumeStatusEnum
{
///
/// 已发布
///
[Description("已发布")] Release = 0,
///
/// 招聘成功
///
[Description("招聘成功")] Success = 1,
///
/// 审核通过
///
[Description("审核通过")] Approved = 2,
///
/// 审核未通过
///
[Description("审核未通过")] Rejected = 3,
}
}