using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 用户实名方式
///
public enum EnumUserRealMethod
{
///
/// 个人手机号三要素
///
Identity3 = 10,
///
/// 银行卡多要素
///
Identity4 = 20,
///
/// 刷脸认证
///
Face = 30
}
}