report.go 750 B

123456789101112131415161718192021222324252627282930313233343536
  1. package model
  2. import "time"
  3. // Report etc.
  4. type Report struct {
  5. ID int64
  6. Name string
  7. DateVersion string
  8. Val int64
  9. Ctime time.Time
  10. }
  11. // ReportDto etc.
  12. type ReportDto struct {
  13. ID int64 `json:"id"`
  14. Name string `json:"name"`
  15. DateVersion string `json:"date_version"`
  16. Val int64 `json:"val"`
  17. Ctime int64 `json:"ctime"`
  18. }
  19. // ReportPage def.
  20. type ReportPage struct {
  21. TotalCount int `json:"total_count"`
  22. Pn int `json:"pn"`
  23. Ps int `json:"ps"`
  24. Items []*ReportDto `json:"items"`
  25. }
  26. const (
  27. //BlockCount block count
  28. BlockCount = "封禁总数"
  29. // SecurityLoginCount security login count
  30. SecurityLoginCount = "二次验证总数"
  31. )