using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 个人用户实名状态 /// public enum EnumPersonalUserRealStatus { /// /// 未实名 /// [Description("未实名")] UnReal = 0, /// /// 校验中 /// [Description("校验中")] Checking = 10, /// /// 实名失败 /// [Description("实名失败")] Fail = 99, /// /// 已实名 /// [Description("已实名")] Real = 100 } }