| | |
| | | //CamerasInOnePage 一页的摄像机信息 |
| | | type CamerasInOnePage struct { |
| | | GbResult |
| | | TotalSize int `json:"totalsize"` //(数字) 设备总数 (下同) |
| | | OnePageSize int `json:"onepagesize"` //(数字) 每页大小 (下同) |
| | | TotalPage int `json:"totalpage"` //(数字) 总分页数 (下同) |
| | | PageNO int `json:"pageno"` //(数字) 当前第几页(下同) |
| | | Count int `json:"count"` //(数字) 当前有几条数据(下同) |
| | | Data []CameraInfo `json:"data"` //设备信息,参照“1.设备管理”定义 |
| | | TotalSize int `json:"totalsize"` //(数字) 设备总数 (下同) |
| | | OnePageSize int `json:"onepagesize"` //(数字) 每页大小 (下同) |
| | | TotalPage int `json:"totalpage"` //(数字) 总分页数 (下同) |
| | | PageNO int `json:"pageno"` //(数字) 当前第几页(下同) |
| | | Count int `json:"count"` //(数字) 当前有几条数据(下同) |
| | | Data []CameraInfo `json:"data"` //设备信息,参照“1.设备管理”定义 |
| | | Groups []DomainUnit `json:"groups"` //资源组信息,resType=2 |
| | | } |
| | | |
| | | //DomainUnit 设备的行政区域 (设备是平台才会去获取行政区域-中间三位编码为200) |