user_bankInfo.go 286 B

12345678910111213141516
  1. package gatesink
  2. import (
  3. "encoding/json"
  4. "bet24.com/servers/transaction"
  5. )
  6. func (this *user) bankInfo(msg string) {
  7. obj := transaction.NewBankInfoList()
  8. obj.In.UserID = this.getUserId()
  9. obj.DoAction()
  10. buf, _ := json.Marshal(obj.Out)
  11. this.WriteMsg(msg, string(buf))
  12. return
  13. }