mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-05 06:10:25 +08:00
20 lines
329 B
Protocol Buffer
20 lines
329 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
option go_package = "./pb";
|
||
|
|
|
||
|
|
package pb;
|
||
|
|
|
||
|
|
import "model_node.proto";
|
||
|
|
import "model_node_cluster.proto";
|
||
|
|
|
||
|
|
// 节点相关同步任务
|
||
|
|
message NodeTask {
|
||
|
|
int64 id = 1;
|
||
|
|
string type = 2;
|
||
|
|
bool isDone = 3;
|
||
|
|
bool isOk = 4;
|
||
|
|
string error = 5;
|
||
|
|
int64 updatedAt = 6;
|
||
|
|
|
||
|
|
Node node = 30;
|
||
|
|
NodeCluster nodeCluster = 31;
|
||
|
|
}
|