12345678910111213141516171819202122232425262728293031323334353637 |
- package model
- import (
- "iot_manager_service/app/device/dao"
- )
- type GatewayDetail struct {
- dao.Gateway
- CountLampPole int `json:"countLampPole"`
- EndLineTime string `json:"endLineTime"`
- NetworkState string `json:"networkState"`
- RunState string `json:"runState"`
- Cpu string `json:"cpu"`
- Memory string `json:"memory"`
- AlarmTerminalList []AlarmTerminal `json:"akeyAlarmTerminalList"`
- CameraList []Camera `json:"cameraList"`
- CaptureUnitList []CaptureUnit `json:"captureUnitList"`
- InfoBoardList []InfoBoard `json:"infoBoardList"`
- IpBroadcastList []IpBroadcast `json:"ipBroadcastList"`
- LightControlList []LightControl `json:"lightControlList"`
- ZigbeeList []Zigbee `json:"zigbeeList"`
- OptoSensorList []OptoSensor `json:"optoSensorList"`
- }
- type RspGatewayList struct {
- Records []GatewayDetail `json:"records"`
- Current int `json:"current"`
- Size int `json:"size"`
- Total int `json:"total"`
- Pages int `json:"pages"`
- }
- type ReqGatewayRemove struct {
- IDs int `json:"ids"`
- SN int `json:"sn"`
- Name string `json:"name"`
- }
|