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