蛋蛋星球-制度模式
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.

45 lines
1.5 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. SettlementStarLevelDividends
  15. )
  16. func (kind UserVirtualAmountFlowTransferType) String() string {
  17. switch kind {
  18. case EggEnergyCommunityDividends:
  19. return "蛋蛋能量-社区分红"
  20. case EggEnergyWatchAdRewardPersonalActiveCoin:
  21. return "浏览视频" //浏览视频奖励-个人蛋蛋积分
  22. case EggEnergyWatchAdRewardTeamActiveCoin:
  23. return "圈层奖励" //浏览视频奖励-团队蛋蛋积分
  24. case EggPointCoinToExchangeToPersonEggEnergy:
  25. return "个人蛋蛋积分兑换"
  26. case EggPointCoinToExchangeToTeamEggEnergy:
  27. return "团队蛋蛋积分兑换"
  28. case PersonEggGetByEnergyEggPointCoin:
  29. return "兑换到个人蛋蛋能量"
  30. case TeamEggGetByEnergyEggPointCoin:
  31. return "兑换到团队蛋蛋能量"
  32. case TeamEggEnergyReleaseToPersonEggEnergy:
  33. return "团队蛋蛋能量释放"
  34. case PersonEggGetByTeamEggEnergyRelease:
  35. return "释放到个人蛋蛋能量"
  36. case SettlementStarLevelDividends:
  37. return "星级分红"
  38. default:
  39. return "未知状态"
  40. }
  41. }