liuxiaolong
2021-11-25 34916e04281bd0d6ffd7678061b8a10e8866a295
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package bhomedbapi
 
type Result struct {
    Code    int         `json:"code"`
    Data    interface{} `json:"data"`
    Msg     string      `json:"msg"`
    Success bool        `json:"success"`
}
 
type TreeMenu struct {
    Id        string     `json:"id" `
    Type      string     `json:"type"`
    Name      string     `json:"name"`
    IsAI      bool       `json:"isAI"`
    Treenodes []TreeMenu `json:"children"`
    CameraType int       `json:"cameraType"`//0:本地摄像机,1:国标摄像机
    IsRunning bool       `json:"isRunning"`//是否正在解码
    Rtsp      string     `json:"rtsp"`
}