notice.go 807 B

123456789101112131415161718192021222324252627282930313233343536
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. const (
  6. // NoticeStatusNotify notify
  7. NoticeStatusNotify = 1
  8. // NoticeStatusNotNotify not notify
  9. NoticeStatusNotNotify = 0
  10. // NoticeTypeSecurity security
  11. NoticeTypeSecurity = "security"
  12. )
  13. // Notice2 v2.
  14. type Notice2 struct {
  15. Status int8 `json:"status"`
  16. Type string `json:"type,omitempty"`
  17. Realname *Realname `json:"realname,omitempty"`
  18. Security *Security `json:"security,omitempty"`
  19. }
  20. // Realname struct.
  21. type Realname struct {
  22. Title string `json:"title,omitempty"`
  23. URL string `json:"url,omitempty"`
  24. }
  25. // Security struct.
  26. type Security struct {
  27. Location string `json:"location,omitempty"`
  28. Time time.Time `json:"time,omitempty"`
  29. IP string `json:"ip,omitempty"`
  30. Mid int64 `json:"mid,omitempty"`
  31. }