mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-07 15:20:24 +08:00
阶段性提交
This commit is contained in:
23
pkg/rpc/protos/model_node.proto
Normal file
23
pkg/rpc/protos/model_node.proto
Normal file
@@ -0,0 +1,23 @@
|
||||
syntax = "proto3";
|
||||
option go_package = "./pb";
|
||||
|
||||
package pb;
|
||||
|
||||
import "model_node_cluster.proto";
|
||||
import "model_node_login.proto";
|
||||
import "model_node_install_status.proto";
|
||||
|
||||
message Node {
|
||||
int64 id = 1;
|
||||
string name = 2;
|
||||
string status = 3;
|
||||
string installDir = 4;
|
||||
bool isInstalled = 5;
|
||||
string code = 6;
|
||||
string uniqueId = 7;
|
||||
string secret = 8;
|
||||
|
||||
NodeCluster cluster = 32;
|
||||
NodeLogin login = 33;
|
||||
NodeInstallStatus installStatus = 34;
|
||||
}
|
||||
Reference in New Issue
Block a user