-
Notifications
You must be signed in to change notification settings - Fork 2
/
properties.go
45 lines (40 loc) · 2.07 KB
/
properties.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
package edgex
//
// Author: 陈哈哈 [email protected], [email protected]
//
const (
NodeTypeEndpoint = "ENDPOINT"
NodeTypeTrigger = "TRIGGER"
)
// 主节点属性模型
type MainNodeProperties struct {
HostOS string `json:"hostOS"` // 系统
HostArch string `json:"hostArch"` // CPU架构
NodeType string `json:"nodeType"` // 节点类型
NodeId string `json:"nodeId"` // 节点ID
Vendor string `json:"vendor"` // 所属品牌名称
ConnDriver string `json:"connDriver"` // 通讯驱动名称
VirtualNodes []*VirtualNodeProperties `json:"nodes"` // 虚拟设备节点列表
}
// 虚拟节点属性模型
type VirtualNodeProperties struct {
UnionId string `json:"unionId"` // 自动生成的UUID;设备的唯一节点编号;
BoardId string `json:"boardId"` // 主板ID
MajorId string `json:"majorId"` // 主ID
MinorId string `json:"minorId"` // 次ID
DeviceType string `json:"deviceType"` // 设备类型
Description string `json:"description"` // 设备描述信息
Virtual bool `json:"virtual"` // 是否为虚拟设备,即通过代理后转换的设备
StateCommands map[string]string `json:"stateCommands"` // 各个状态下的控制指令
Attrs map[string]string `json:"attrs"` // 其它属性列表
}
// 虚拟节点状态模型
type VirtualNodeState struct {
UnionId string `json:"unionId"` // 自动生成的UUID;设备的唯一节点编号;
NodeId string `json:"nodeId"` // NodeId
BoardId string `json:"boardId"` // 主板ID
MajorId string `json:"majorId"` // 设备主ID
MinorId string `json:"minorId"` // 设备次ID
State string `json:"state"` // 设备状态
Values map[string]interface{} `json:"values"` // 设备状态数值
}