captureUint.go 1.5 KB

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