蛋蛋星球-制度模式
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.4 KiB

  1. package enum
  2. // UserVirtualAmountFlowTransferType 用户虚拟币流水-类型
  3. type UserVirtualAmountFlowTransferType int
  4. const (
  5. EggEnergyCommunityDividends UserVirtualAmountFlowTransferType = iota + 1
  6. EggEnergyWatchAdRewardPersonalActiveCoin
  7. EggEnergyWatchAdRewardTeamActiveCoin
  8. EggPointCoinToExchangeToPersonEggEnergy
  9. EggPointCoinToExchangeToTeamEggEnergy
  10. PersonEggGetByEnergyEggPointCoin
  11. TeamEggGetByEnergyEggPointCoin
  12. TeamEggEnergyReleaseToPersonEggEnergy
  13. PersonEggGetByTeamEggEnergyRelease
  14. )
  15. func (kind UserVirtualAmountFlowTransferType) String() string {
  16. switch kind {
  17. case EggEnergyCommunityDividends:
  18. return "蛋蛋能量-社区分红"
  19. case EggEnergyWatchAdRewardPersonalActiveCoin:
  20. return "浏览视频" //浏览视频奖励-个人蛋蛋积分
  21. case EggEnergyWatchAdRewardTeamActiveCoin:
  22. return "圈层奖励" //浏览视频奖励-团队蛋蛋积分
  23. case EggPointCoinToExchangeToPersonEggEnergy:
  24. return "个人蛋蛋积分兑换"
  25. case EggPointCoinToExchangeToTeamEggEnergy:
  26. return "团队蛋蛋积分兑换"
  27. case PersonEggGetByEnergyEggPointCoin:
  28. return "兑换到个人蛋蛋能量"
  29. case TeamEggGetByEnergyEggPointCoin:
  30. return "兑换到团队蛋蛋能量"
  31. case TeamEggEnergyReleaseToPersonEggEnergy:
  32. return "团队蛋蛋能量释放"
  33. case PersonEggGetByTeamEggEnergyRelease:
  34. return "释放到个人蛋蛋能量"
  35. default:
  36. return "未知状态"
  37. }
  38. }