-
Notifications
You must be signed in to change notification settings - Fork 0
/
tag.go
53 lines (44 loc) · 1.02 KB
/
tag.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
52
53
package main
import (
"database/sql"
)
type (
Tag struct {
PartitionKey string `json:"partitionKey"`
TagName string `json:"tagName"`
MetaData []*MetaData `json:"metaData"`
SeriesId int64 `json:"seriesId"`
}
MetaData struct {
Key sql.NullString `json:"key"`
Value sql.NullString `json:"value"`
}
View struct {
TagName string `json:"tagName"`
MetaData []*MetaData `json:"metaData"`
}
Key struct {
PartitionKey string `json:"partitionKey"`
TagName string `json:"tagName"`
}
Series struct {
SeriesId int64 `json:"seriesId"`
Dt []*int64 `json:"dt"`
Val []*any `json:"Val"`
}
DataIngestByTagName struct {
TagName string `json:"tagName"`
Dt int64 `json:"dt"`
Val any `json:"Val"`
}
DataIngestById struct {
SeriesId int64 `json:"seriesId"`
Dt int64 `json:"dt"`
Val any `json:"Val"`
}
DataRequest struct {
TagName string `json:"tagName"`
Start int64 `json:"start"`
End int64 `json:"end"`
}
)