capture.go 687 B

1234567891011121314151617181920
  1. package model
  2. type RequestCaptureFilter struct {
  3. StartTime string `form:"queryStartDate"`
  4. EndTime string `form:"queryEndDate"`
  5. QueryType string `form:"queryType"` //类型 month月 day日
  6. CaptureId int `form:"captureId"` //抓拍单元
  7. Type int `form:"type"` //归属地时,区分查看城市 1=省份 2=城市
  8. }
  9. type ResponseCaptureVehicleTotal struct {
  10. CountTime string `json:"countTime"` //统一时间
  11. CountT int `json:"countT"` //总报警
  12. }
  13. type ResponseCaptureSuggestSpeed struct {
  14. ID int `json:"id"`
  15. CaptureDirection int `json:"captureDirection"` //方向
  16. WayName string `json:"wayName"` //名称
  17. }