captureCarRecord.go 950 B

12345678910111213141516171819202122232425
  1. package model
  2. type ResponseCarRecordCount struct {
  3. NowDate string `json:"nowDate"` //当前返回时间
  4. CountN int `json:"countN"` //大型货车
  5. CountT int `json:"countT"` //中型货车
  6. }
  7. type ResponseCarModelCount struct {
  8. TotalCountN int `json:"totalCountN"` //大型货车 总数量
  9. TotalCountT int `json:"totalCountT"` //中型货车 总数量
  10. }
  11. type ResponseCarRecordAll struct {
  12. CarRecordCount []ResponseCarRecordCount `json:"carRecordCount"` //汇总line图
  13. CarModelCount ResponseCarModelCount `json:"carModelCount"` //车型总数量
  14. Details interface{} `json:"details"` //下方车牌明细
  15. }
  16. type RequestCarRecordCountFilter struct {
  17. StartTime string `form:"startTime"`
  18. EndTime string `form:"endTime"`
  19. QueryType string `form:"queryType"` //类型 month月 day日
  20. CaptureId int `form:"captureId"` //抓拍单元
  21. CarModel int `form:"carModel"` //2大型 1中型 0全部
  22. }