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