lampPoleGroup.go 1.0 KB

123456789101112131415161718192021222324252627
  1. package model
  2. import (
  3. "iot_manager_service/app/dao"
  4. )
  5. type LampPoleGroupDetail struct {
  6. dao.LampPoleGroup
  7. PublicName string `json:"publicName"` // 用于虚拟字段组成的树
  8. LampPoleVOList []LampPoleDetail `json:"lampPoleVOList"` //分组下的所有灯杆集合
  9. CameraList []Camera `json:"cameraList"` //智能安防中调用摄像头直播列表
  10. SwitchBoxList []SwitchBox `json:"switchBoxList"` //智能安防中调用配电箱直播列表
  11. InfoBoardList []InfoBoard `json:"infoBoardList"` //节目组下查询分组下的信息屏集合
  12. }
  13. type RspLampPoleGroupList struct {
  14. Records []LampPoleGroupDetail `json:"records"` //记录列表
  15. Current int `json:"current"` //当前分页
  16. Size int `json:"size"` //每页数量
  17. Pages int `json:"pages"` //总页数
  18. Total int `json:"total"` //总数
  19. }
  20. type ReqLampPoleGroupRemove struct {
  21. IDs int `json:"ids"` //分组编码
  22. Name string `json:"name"` //分组名
  23. }