mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-15 13:26:35 +08:00
14 lines
218 B
Protocol Buffer
14 lines
218 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message NodeLog {
|
|
string role = 1;
|
|
string tag = 2;
|
|
string description = 3;
|
|
string level = 4;
|
|
int64 nodeId = 5;
|
|
int64 createdAt = 6;
|
|
int32 count = 7;
|
|
} |