554325746@qq.com
2019-12-23 0222e79afe45d9fc55aed9a7e62ca239c228ab73
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package controllers
 
import (
    "basic.com/gb28181api.git"
    "github.com/gin-gonic/gin"
)
 
type Gb28181CloudController struct {
 
}
 
func (gb *Gb28181CloudController) Left(c *gin.Context) {
    cameraId := c.Query("cameraId")
 
    var gbApi gb28181api.Gb28181Api
    gbApi.SetCameraPtz(cameraId,"",3)
 
}