suspicious.go 765 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package model
  2. // Suspicious .
  3. type Suspicious struct {
  4. Id int64 `json:"id"`
  5. SenderId int64 `json:"sender_id"`
  6. Content string `json:"content"`
  7. Area string `json:"area"`
  8. OId int64 `json:"oid"`
  9. }
  10. // GetArea .
  11. func (susp *Suspicious) GetArea() string {
  12. return susp.Area
  13. }
  14. // GetSenderID .
  15. func (susp *Suspicious) GetSenderID() int64 {
  16. return susp.SenderId
  17. }
  18. // GetID .
  19. func (susp *Suspicious) GetID() int64 {
  20. return susp.Id
  21. }
  22. // GetOID .
  23. func (susp *Suspicious) GetOID() int64 {
  24. return susp.OId
  25. }
  26. // GetContent .
  27. func (susp *Suspicious) GetContent() string {
  28. return susp.Content
  29. }
  30. // SuspiciousResp .
  31. type SuspiciousResp struct {
  32. Area string `json:"-"`
  33. Content string `json:"content"`
  34. LimitType string `json:"susp_type"`
  35. }