You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
648 B

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GDZZ.Application
{
/// <summary>
/// 用户类型枚举
/// </summary>
public enum UserEnum
{
/// <summary>
/// 求职者
/// </summary>
[Description("求职者")]
JOB = 1,
/// <summary>
/// 招聘者
/// </summary>
[Description("招聘者")]
ADVERTISE = 2,
/// <summary>
/// 猎头
/// </summary>
[Description("猎头")]
HEADHUNTERS = 3
}
}