message.go 585 B

12345678910111213141516171819202122232425
  1. package model
  2. import "encoding/json"
  3. // const .
  4. const (
  5. TimeFormatSec = "2006-01-02 15:04:05"
  6. )
  7. // Message is simple message struct info.
  8. type Message struct {
  9. Action string `json:"action"`
  10. Table string `json:"table"`
  11. New json.RawMessage `json:"new"`
  12. Old json.RawMessage `json:"old"`
  13. }
  14. // VipInfoMessage .
  15. type VipInfoMessage struct {
  16. Mid int64 `json:"mid"`
  17. VipType int8 `json:"vip_type"`
  18. VipPayType int8 `json:"vip_pay_type"`
  19. VipStatus int8 `json:"vip_status"`
  20. VipOverdueTime string `json:"vip_overdue_time"`
  21. }