using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LifePayment.Domain.Shared; /// /// 钱包账户类型枚举 /// public enum WalletAccountTypeEnum { /// /// 平安银行账户 /// [Description("平安银行")] PingAn = 10, /// /// 支付宝 /// [Description("支付宝")] AliPay = 20, /// /// 线下支付 /// [Description("线下支付")] OfflinePay = 30, } public enum TransAccountTypeEnum { /// /// 平安银行账户 /// [Description("银行")] Bank = 10, /// /// 支付宝 /// [Description("支付宝")] AliPay = 20, }