captureUint.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package model
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "time"
  5. )
  6. type CaptureDetail struct {
  7. dao.CaptureUnit
  8. PoleName string `json:"poleName"` //灯杆名称
  9. PoleSn string `json:"poleSn"` //灯杆编码
  10. PoleLat float32 `json:"poleLat"` //灯杆纬度
  11. PoleLng float32 `json:"poleLng"` //灯杆经度
  12. InstallLocation string `json:"installLocation"` //灯杆地址
  13. PointName string `json:"pointName"` //卡口名称
  14. PointSn string `json:"pointSn"` //卡口编码
  15. PointLocation string `json:"pointLocation"` //卡口位置
  16. NetworkState string `json:"networkState"` //通讯状态 1在线2离线
  17. EndLineTime time.Time `json:"endLineTime"` //最后在线时间
  18. }
  19. type RspCaptureList struct {
  20. Records []CaptureDetail `json:"records"` //记录列表
  21. Current int `json:"current"` //当前分页
  22. Size int `json:"size"` //每页数量
  23. Total int `json:"total"` //总数
  24. Pages int `json:"pages"` //总页数
  25. }
  26. type RspPointList struct {
  27. Records []dao.CheckPoint `json:"records"` //记录列表
  28. Current int `json:"current"` //当前分页
  29. Size int `json:"size"` //每页数量
  30. Total int `json:"total"` //总数
  31. Pages int `json:"pages"` //总页数
  32. }
  33. type ReqCaptureRemove struct {
  34. IDs int `json:"ids"` //分组编码
  35. SN int `json:"sn"` //sn
  36. Type string `json:"type"` //类型
  37. }