| | |
| | | |
| | | err := c.BindJSON(&cam) |
| | | if err != nil { |
| | | logger.Debug("err:",err) |
| | | util.ResponseFormat(c, code.RequestParamError, "参数错误") |
| | | return |
| | | } |
| | |
| | | // @Security ApiKeyAuth |
| | | // @Summary 切换摄像机运行实时或轮询的开关 |
| | | // @Description 切换摄像机运行实时或轮询的开关 |
| | | // @Accept x-www-form-urlencoded |
| | | // @Produce json |
| | | // @Tags camera |
| | | // @Param cameraId formData string true "摄像机id" |
| | |
| | | util.ResponseFormat(c, code.ComError, "更新失败") |
| | | return |
| | | } |
| | | util.ResponseFormat(c, code.Success, filename) |
| | | util.ResponseFormat(c, code.Success, map[string]string{ |
| | | "cameraId": cid, |
| | | "snapshotUrl": filename, |
| | | }) |
| | | } |
| | | |
| | | type CameraChangeRunVo struct { |