package model type CameraLiveDetail struct { PoleGroupName string `json:"poleGroupName"` CameraList []CameraLive `json:"cameraList"` } type CameraLive struct { Id int `json:"id"` DeviceName string `json:"deviceName"` DeviceSn string `json:"deviceSn"` PoleGroupName string `json:"poleGroupName"` MonitorAddress string `json:"monitorAddress"` StreamId string `json:"streamId"` RunState string `json:"runState"` CameraType int `json:"cameraType"` }