user_savingPot.go 618 B

123456789101112131415161718192021222324
  1. package gatesink
  2. import (
  3. activityservice "bet24.com/servers/micros/activityservice/proto"
  4. )
  5. // 获取用户存钱罐
  6. func (this *user) getUserSavingPot(msg, data string) {
  7. jsonData := activityservice.GetUserSavingPot(this.getUserId())
  8. this.WriteMsg(msg, jsonData)
  9. return
  10. }
  11. // 获取用户存钱罐
  12. func (this *user) getUserNewSavingPot(msg, data string) {
  13. jsonData := activityservice.GetUserNewSavingPot(this.getUserId())
  14. this.WriteMsg(msg, jsonData)
  15. return
  16. }
  17. // 获取用户存钱罐
  18. func (this *user) checkUserSavingPotStatus(msg, data string) {
  19. activityservice.CheckMultiplyReceive(this.getUserId())
  20. }