using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LifePayment.Domain.Shared; /// /// 钱包开户银行托管状态 /// public enum WalletAccountOpenBankSignStatusEnum { /// /// 待托管 /// NotCustodied = 10, /// /// 已托管 /// Custodied = 20 }