lampPoleGroup.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 []LampPoleVO `json:"lampPoleVOList"` //分组下的所有灯杆集合
  9. CameraList []Camera `json:"cameraList"` //智能安防中调用摄像头直播列表
  10. SwitchBoxList []SwitchBox `json:"switchBoxList"` //智能安防中调用配电箱直播列表
  11. InfoBoardList []InfoBoard `json:"infoBoardList"` //节目组下查询分组下的信息屏集合
  12. }
  13. type LampPoleVO struct {
  14. }
  15. type Camera struct {
  16. }
  17. type SwitchBox struct {
  18. }
  19. type InfoBoard struct {
  20. }
  21. type RspLampPoleGroupList struct {
  22. Records []LampPoleGroupDetail `json:"records"` //记录列表
  23. Current int `json:"current"` //当前分页
  24. Size int `json:"size"` //每页数量
  25. Pages int `json:"pages"` //总页数
  26. Total int `json:"total"` //总数
  27. }
  28. type ReqLampPoleGroupRemove struct {
  29. IDs int `json:"ids"` //分组编码
  30. }