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 WalletOperateAmountTypeEnum { /// /// 可用余额 /// [Description("可用余额")] CanUseMoney = 10, /// /// 定向资金 /// [Description("定向资金")] DirectMoney = 20, /// /// 发薪钱包 /// [Description("发薪钱包")] SalaryMoney = 30, /// /// 不可用余额 /// [Description("不可用余额")] CanNotUseMoney = 40, /// /// 冻结余额 /// [Description("冻结余额")] FreezeMoney = 50 }