gateway.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. package model
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "time"
  5. )
  6. type GatewayDetail struct {
  7. dao.Gateway
  8. CountLampPole int `json:"countLampPole"` //关联设备数 //todo 修改返回名
  9. EndLineTime time.Time `json:"endLineTime"` //最后上线时间
  10. NetworkState string `json:"networkState"` //网络状态
  11. RunState string `json:"runState"` //运行状态
  12. Cpu string `json:"cpu"` //CPU占有率
  13. Memory string `json:"memory"` //内存占有率
  14. AlarmTerminalList []dao.AlarmTerminal `json:"akeyAlarmTerminalList"` //一键告警集合
  15. CameraList []dao.CameraDevice `json:"cameraList"` //摄像头集合
  16. CaptureUnitList []dao.CaptureUnit `json:"captureUnitList"` //抓拍单元集合
  17. InfoBoardList []dao.InfoBoard `json:"infoBoardList"` //信息屏集合
  18. IpBroadcastList []dao.IpBroadcast `json:"ipBroadcastList"` //IP音柱集合
  19. LightControlList []dao.LightControl `json:"lightControlList"` //灯控集合
  20. ZigbeeList []dao.Zigbee `json:"zigbeeList"` //ZigBee集合
  21. OptoSensorList []dao.OptoSensor `json:"optoSensorList"` //气象站集合
  22. }
  23. type RspGatewayList struct {
  24. Records []GatewayDetail `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 ReqGatewayRemove struct {
  31. IDs int `json:"ids"` //分组编码
  32. SN string `json:"sn"` //sn
  33. Name string `json:"name"` //名称
  34. }