lampPole.go 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package model
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. )
  5. type LampPoleDetail struct {
  6. dao.LampPole
  7. IsCrossName string `json:"isCrossName"` //是否路口名称
  8. TagName string `json:"tagName"` //标签(中文)
  9. ProvincesName string `json:"provincesName"` //省市区组合地址
  10. GatewaySn string `json:"gatewaySn"` //网关编码
  11. BoxSn string `json:"boxSn"` //配电箱编码
  12. RunState string `json:"runState"` //运行状态
  13. PoleGroupName string `json:"poleGroupName"` //灯杆分组名称
  14. BoxName string `json:"boxName"` //配电箱名称
  15. AlarmTerminalList []AlarmTerminal `json:"akeyAlarmTerminalList"` //一键告警集合
  16. CameraList []Camera `json:"cameraList"` //摄像头集合
  17. CaptureUnitList []CaptureUnit `json:"captureUnitList"` //抓拍单元集合
  18. GatewayList []Gateway `json:"gatewayList"` //网关集合
  19. InfoBoardList []InfoBoard `json:"infoBoardList"` //信息屏集合
  20. IpBroadcastList []IpBroadcast `json:"ipBroadcastList"` //IP音柱集合
  21. LightControlList []LightControl `json:"lightControlList"` //灯控集合
  22. SensorList []Sensor `json:"sensorList"` //环境监测集合
  23. ZigbeeList []Zigbee `json:"zigbeeList"` //ZigBee集合
  24. }
  25. type RspLampPoleList struct {
  26. Records []LampPoleDetail `json:"records"` //记录列表
  27. Current int `json:"current"` //当前分页
  28. Size int `json:"size"` //每页数量
  29. Total int `json:"total"` //总数
  30. Pages int `json:"pages"` //总页数
  31. }
  32. type ReqLampPoleRemove struct {
  33. IDs int `json:"ids"` //分组编码
  34. SN int `json:"sn"` //sn
  35. Name string `json:"name"` //名称
  36. }