浏览代码

update

tags/v0.0.3
dengbiao 1周前
父节点
当前提交
bc693b509b
共有 1 个文件被更改,包括 26 次插入0 次删除
  1. +26
    -0
      enum/user_wallet_fllow.go

+ 26
- 0
enum/user_wallet_fllow.go 查看文件

@@ -0,0 +1,26 @@
package enum

// UserWalletFlowTransferType 用户钱包流水-类型
type UserWalletFlowTransferType int

const (
AdministratorOperationAddBalance UserWalletFlowTransferType = iota + 1
AdministratorOperationSubBalance
EggEnergyExchangeAccountBalance
AccountBalanceExchangeEggEnergy
)

func (kind UserWalletFlowTransferType) String() string {
switch kind {
case AdministratorOperationAddBalance:
return "管理员操作增加余额"
case AdministratorOperationSubBalance:
return "管理员操作扣除余额"
case EggEnergyExchangeAccountBalance:
return "蛋蛋能量兑换余额"
case AccountBalanceExchangeEggEnergy:
return "余额兑换蛋蛋能量"
default:
return "未知状态"
}
}

正在加载...
取消
保存