123456789101112131415161718192021222324252627 |
- package model
- import (
- "iot_manager_service/app/device/dao"
- )
- type LampPoleGroupDetail struct {
- dao.LampPoleGroup
- PublicName string `json:"publicName"`
- LampPoleVOList []LampPoleDetail `json:"lampPoleVOList"`
- CameraList []dao.CameraDevice `json:"cameraList"`
- SwitchBoxList []dao.SwitchBox `json:"switchBoxList"`
- InfoBoardList []dao.InfoBoard `json:"infoBoardList"`
- }
- 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"`
- Name string `json:"name"`
- }
|