You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
450 B

package common_models
type NodeArgs struct {
ID string // 节点标识符
NodeType string // 节点类型:iota数据处理、聚集数据处理 类似的
Status string // 节点状态:例如健康状态、负载情况、可用性等信息
Resources string // 节点资源情况:CPU、内存、存储等资源的容量和使用情况等信息
Addr string // 网络地址
ThingIds []string // 处理的thingId
}