captureSpeed.go 1008 B

12345678910111213141516171819202122232425262728293031323334
  1. package model
  2. type ResponseCaptureSpeed struct {
  3. CountTime string `json:"countTime"` //统一时间
  4. V1 int `json:"v1"`
  5. V2 int `json:"v2"`
  6. V3 int `json:"v3"`
  7. V4 int `json:"v4"`
  8. V5 int `json:"v5"`
  9. V6 int `json:"v6"`
  10. V7 int `json:"v7"`
  11. V11 int `json:"v11"`
  12. V13 int `json:"v13"`
  13. V14 int `json:"v14"`
  14. V15 int `json:"v15"`
  15. V16 int `json:"v16"`
  16. }
  17. type RequestCaptureOverSpeed struct {
  18. StartTime string `form:"queryStartDate"`
  19. EndTime string `form:"queryEndDate"`
  20. CaptureId int `form:"captureId"` //抓拍单元
  21. Current int `form:"current"` //当前分页
  22. Size int `form:"size"` //每页数量
  23. }
  24. type ResponseCaptureOverSpeedRecord struct {
  25. Records interface{} `json:"records"` //记录列表
  26. Current int `json:"current"` //当前分页
  27. Size int `json:"size"` //每页数量
  28. Total int64 `json:"total"` //总数
  29. Pages int `json:"pages"` //总页数
  30. }