user_userwin.go 248 B

12345678910111213
  1. package gatesink
  2. import (
  3. "bet24.com/servers/coreservice/client"
  4. "fmt"
  5. )
  6. // 公告列表
  7. func (this *user) getUserWinScore(msg string) {
  8. score := client.GetUserWinScore(this.getUserId())
  9. this.WriteMsg(msg, fmt.Sprintf("%d", score))
  10. return
  11. }