using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LifePayment.Domain.Shared;
///
/// 钱包明细业务类型
///
public enum WalletDetailBusinessTypeEnum
{
///
/// 对单转账
///
WalletSingleTransfer = 10,
///
/// 充值
///
WalletRecharge = 20,
///
/// 线下投保
///
InsureOfflinePolicy = 30,
///
/// 批量转账
///
WalletBatchTransfer = 40,
}