1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package model
- import (
- "iot_manager_service/app/dao"
- )
- type LampPoleDetail struct {
- dao.LampPole
- IsCrossName string `json:"isCrossName"`
- TagName string `json:"tagName"`
- ProvincesName string `json:"provincesName"`
- GatewaySn string `json:"gatewaySn"`
- BoxSn string `json:"boxSn"`
- RunState string `json:"runState"`
- PoleGroupName string `json:"poleGroupName"`
- BoxName string `json:"boxName"`
- AlarmTerminalList []AlarmTerminal `json:"akeyAlarmTerminalList"`
- CameraList []Camera `json:"cameraList"`
- CaptureUnitList []CaptureUnit `json:"captureUnitList"`
- GatewayList []Gateway `json:"gatewayList"`
- InfoBoardList []InfoBoard `json:"infoBoardList"`
- IpBroadcastList []IpBroadcast `json:"ipBroadcastList"`
- LightControlList []LightControl `json:"lightControlList"`
- SensorList []Sensor `json:"sensorList"`
- ZigbeeList []Zigbee `json:"zigbeeList"`
- }
- type AlarmTerminal struct {
- }
- type CaptureUnit struct {
- }
- type Gateway struct {
- }
- type IpBroadcast struct {
- }
- type LightControl struct {
- }
- type Sensor struct {
- }
- type Zigbee struct {
- }
- type RspLampPoleList struct {
- Records []LampPoleDetail `json:"records"`
- Current int `json:"current"`
- Size int `json:"size"`
- Total int `json:"total"`
- Pages int `json:"pages"`
- }
- type ReqLampPoleRemove struct {
- IDs int `json:"ids"`
- }
|