model.go 554 B

1234567891011121314151617181920212223242526
  1. package model
  2. import (
  3. "encoding/json"
  4. )
  5. // RecoveryInfo recoveryInfo.
  6. type RecoveryInfo struct {
  7. Rid int64 `json:"rid" params:"rid;Required"` // 用户rid列表
  8. Status int64 `json:"status"`
  9. }
  10. // Message is databus message.
  11. type Message struct {
  12. Action string `json:"action"`
  13. Table string `json:"table"`
  14. New json.RawMessage `json:"new"`
  15. Old json.RawMessage `json:"old"`
  16. }
  17. // CommonResq CommonResq
  18. type CommonResq struct {
  19. Code int64 `json:"code"`
  20. TS int64 `json:"ts"`
  21. Message string `json:"message"`
  22. }