using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LifePayment.Domain.Shared;
///
/// 钱包金额操作类型枚举
///
public enum WalletAmountOperateTypeEnum
{
///
/// 收入
///
Income = 10,
///
/// 从不可用余额中退还
///
ReturnFromCanNotUse = 11,
///
/// 支出并转移至不可用余额
///
ExpenseToCanNotUse = 20,
///
/// 支出
///
Expense = 21,
}