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