income.go 627 B

12345678910111213141516171819202122232425
  1. package message
  2. import (
  3. "bet24.com/servers/micros/audioroom/handler/income"
  4. )
  5. // 获取收益信息
  6. func audioRoomGetIncomeInfo(userId int, data string) string {
  7. return income.GetIncomeInfo(userId, data)
  8. }
  9. // 获取收益记录
  10. func audioRoomGetIncomeLog(userId int, data string) string {
  11. return income.GetIncomeLog(userId, data)
  12. }
  13. // 获取用户收益统计
  14. func audioRoomGetUserIncomeStat(userId int, data string) string {
  15. return income.GetUserIncomeStat(userId, data)
  16. }
  17. // 获取游戏收益统计
  18. func audioRoomGetGameIncomeStat(userId int, data string) string {
  19. return income.GetGameIncomeStat(userId, data)
  20. }