package bhomedbapi import json "github.com/json-iterator/go" type CameraGroupApi struct { } func (api CameraGroupApi) FindAll() (flag bool,list interface{}) { url := DATA_URL_PREFIX + "/camera/group/findAll" netNode := getNetNode(url2Topic(Topic_Scene_Service, url)) client := NewClient(WithNodes(netNode)) body, err := client.DoGetRequest(url, nil, nil) if err != nil { logPrint("camera group findAll err:", err) return false, nil } var res Result if err = json.Unmarshal(body, &res); err != nil { logPrint("relations unmarshal err:", err) return false,nil } return res.Success, res.Data } func (api CameraGroupApi) Save(paramBody map[string]interface{}) (bool,interface{}) { url := DATA_URL_PREFIX + "/camera/group/save" netNode := getNetNode(url2Topic(Topic_Scene_Service, url)) client := NewClient(WithNodes(netNode)) body, err := client.DoPostRequest(url,CONTENT_TYPE_JSON,paramBody,nil,nil) if err != nil { return false,nil } var res Result if err = json.Unmarshal(body, &res); err != nil { return false,nil } return res.Success,res.Data }