model.go 420 B

12345678910111213141516171819
  1. package model
  2. import "encoding/json"
  3. // Message canal standary message
  4. type Message struct {
  5. Action string `json:"action"`
  6. Table string `json:"table"`
  7. New json.RawMessage `json:"new"`
  8. Old json.RawMessage `json:"old"`
  9. }
  10. // User canal base message
  11. type User struct {
  12. Uid int64 `json:"uid"`
  13. Gold int64 `json:"gold"`
  14. IapGold int64 `json:"iap_gold"`
  15. Silver int64 `json:"silver"`
  16. }