lampPole.go 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package model
  2. import (
  3. "iot_manager_service/app/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 AlarmTerminal struct {
  26. }
  27. type CaptureUnit struct {
  28. }
  29. type Gateway struct {
  30. }
  31. type IpBroadcast struct {
  32. }
  33. type LightControl struct {
  34. }
  35. type Sensor struct {
  36. }
  37. type Zigbee struct {
  38. }
  39. type RspLampPoleList struct {
  40. Records []LampPoleDetail `json:"records"` //记录列表
  41. Current int `json:"current"` //当前分页
  42. Size int `json:"size"` //每页数量
  43. Total int `json:"total"` //总数
  44. Pages int `json:"pages"` //总页数
  45. }
  46. type ReqLampPoleRemove struct {
  47. IDs int `json:"ids"` //分组编码
  48. }