using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LifePayment.Domain.Shared;
///
/// 钱包开户银行接口校验状态
///
public enum WalletAccountOpenBindInterfaceStatusEnum
{
///
/// 初始
///
Init = 1,
///
/// 验证未通过
///
VerificationFailed = 10,
///
/// 验证通过
///
VerificationPassed = 20
}