zhangmeng
2024-01-19 01dfd9dc8de7b19f9dfa4284722e01bbd5837801
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package bhomedbapi
 
import (
    jsoniter "github.com/json-iterator/go"
)
 
type LicenseApi struct {
}
 
func (api LicenseApi) GetRegisterCode(paramBody map[string]interface{}) (bool, interface{}) {
    url := DATA_URL_PREFIX + "/license/getRegisterCode"
    netNode := getNetNode(url2Topic(Topic_System_Service, url))
    client := NewClient(WithNodes(netNode))
 
    body, err := client.DoPostRequest(url, CONTENT_TYPE_JSON, paramBody, nil, nil)
    if err != nil {
        return false, nil
    }
 
    var json = jsoniter.ConfigCompatibleWithStandardLibrary
    var res Result
    if err = json.Unmarshal(body, &res); err != nil {
        return false, nil
    }
 
    return res.Success, res.Data
}
 
func (api LicenseApi) Save(paramBody map[string]interface{}) (bool, interface{}) {
    url := DATA_URL_PREFIX + "/license/save"
    netNode := getNetNode(url2Topic(Topic_System_Service, url))
    client := NewClient(WithNodes(netNode))
    body, err := client.DoPostRequest(url, CONTENT_TYPE_JSON, paramBody, nil, nil)
    if err != nil {
        return false, nil
    }
 
    var json = jsoniter.ConfigCompatibleWithStandardLibrary
    var res Result
    if err = json.Unmarshal(body, &res); err != nil {
        return false, nil
    }
 
    return res.Success, res.Data
}
 
func (api LicenseApi) Show() (int, bool, interface{}) {
    url := DATA_URL_PREFIX + "/license/show"
    netNode := getNetNode(url2Topic(Topic_System_Service, url))
    client := NewClient(WithNodes(netNode))
    body, err := client.DoGetRequest(url, nil, nil)
    if err != nil {
        return 500, false, nil
    }
 
    var json = jsoniter.ConfigCompatibleWithStandardLibrary
    var res Result
    if err = json.Unmarshal(body, &res); err != nil {
        return 500, false, nil
    }
    return res.Code, res.Success, res.Data
}