using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LifePayment.Domain.Shared; /// /// 钱包开户银行绑定状态 /// public enum WalletAccountOpenBankBindStatusEnum { /// /// 未绑定 /// NotBind = 10, /// /// 已绑定 /// Bind = 20 }