1234567891011121314151617181920212223242526272829303132333435363738 |
- package model
- import (
- "iot_manager_service/app/dao"
- )
- type LampPoleGroupDetail struct {
- dao.LampPoleGroup
- PublicName string `json:"publicName"` // 用于虚拟字段组成的树
- LampPoleVOList []LampPoleVO `json:"lampPoleVOList"` //分组下的所有灯杆集合
- CameraList []Camera `json:"cameraList"` //智能安防中调用摄像头直播列表
- SwitchBoxList []SwitchBox `json:"switchBoxList"` //智能安防中调用配电箱直播列表
- InfoBoardList []InfoBoard `json:"infoBoardList"` //节目组下查询分组下的信息屏集合
- }
- type LampPoleVO struct {
- }
- type Camera struct {
- }
- type SwitchBox struct {
- }
- type InfoBoard struct {
- }
- type RspLampPoleGroupList struct {
- Records []LampPoleGroupDetail `json:"records"` //记录列表
- Current int `json:"current"` //当前分页
- Size int `json:"size"` //每页数量
- Pages int `json:"pages"` //总页数
- Total int `json:"total"` //总数
- }
- type ReqLampPoleGroupRemove struct {
- IDs int `json:"ids"` //分组编码
- }
|