captureReport.go 875 B

1234567891011121314151617181920212223
  1. package model
  2. type RequestCaptureReportFilter struct {
  3. StartTime string `form:"startTime"`
  4. EndTime string `form:"endTime"`
  5. CaptureId int `form:"captureId"` //抓拍单元
  6. QueryType int `form:"queryType"` //1小时统计 2日统计 3月统计
  7. }
  8. type ResponseCaptureReport struct {
  9. CountTime string `json:"time"` //时间
  10. Value1 int `json:"value1"` //小型货车
  11. Value2 int `json:"value2"` //中型货车
  12. Value3 int `json:"value3"` //大型货车
  13. Value4 int `json:"value4"` //特大货车
  14. Value5 int `json:"value5"` //箱式货车
  15. Value6 int `json:"value6"` //轻型客车
  16. Value7 int `json:"value7"` //大客车
  17. Value8 int `json:"value8"` //汽车小计
  18. Value9 int `json:"value9"` //摩托车
  19. Value10 int `json:"value10"` //拖拉机
  20. AllTotal int `json:"value11"` //总计
  21. }