using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 任务录用状态
///
public enum EnumTaskUserHireStatus
{
///
/// 待录用
///
Wait = 10,
///
/// 已录用
///
Pass = 20,
///
/// 已谢绝
///
Refuse = 30
}
}