-
Notifications
You must be signed in to change notification settings - Fork 0
/
handle.go
51 lines (43 loc) · 1.3 KB
/
handle.go
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
package mythsapi
import (
"fmt"
)
type ThsErrorRes struct {
ErrorCode int `json:"errorcode"`
ErrMsg string `json:"errmsg"`
}
type ThsRestRes[T any] struct {
ThsErrorRes //错误信息
DataRes[T]
}
type DataRes[T any] struct {
Data T `json:"data"` //请求结果
Tables T `json:"tables"` //请求结果
DataType []DataType `json:"dataType"` //请求数据类型
InputParams map[string]interface{} `json:"inputParams"` //请求参数
DataVol int64 `json:"dataVol"` //请求数据量
Perf int64 `json:"perf"` //请求耗时
}
type DataType struct {
ItemId string `json:"itemid"` //请求数据类型
Type string `json:"type"` //请求数据类型
}
// type InputParams struct {
// Indexs string `json:"indexs"` //请求数据类型
// }
func handlerCommonRest[T any](data []byte) (*ThsRestRes[T], error) {
res := &ThsRestRes[T]{}
// log.Warn(string(data))
err := json.Unmarshal(data, &res)
if err != nil {
log.Error("rest返回值获取失败", err)
}
return res, err
}
func (err *ThsErrorRes) handlerError() error {
if err.ErrorCode != 0 {
return fmt.Errorf("request error:[code:%v][message:%v]", err.ErrorCode, err.ErrMsg)
} else {
return nil
}
}