using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core.Models.ElectronSignServer.PersonalUserReals
{
///
/// 电子签-实名状态(0未实名 10校验中 99实名失败 100已实名)
///
public enum EnumElectronSignRealStatus
{
///
/// 未实名
///
[Description("未实名")]
UnReal = 0,
///
/// 校验中
///
[Description("校验中")]
Checking = 10,
///
/// 实名失败
///
[Description("实名失败")]
Fail = 99,
///
/// 已实名
///
[Description("已实名")]
Real = 100
}
}