mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-06 23:00:24 +08:00
21 lines
358 B
Protocol Buffer
21 lines
358 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message NodeLog {
|
|
int64 id = 1;
|
|
string role = 2;
|
|
string tag = 3;
|
|
string description = 4;
|
|
string level = 5;
|
|
int64 nodeId = 6;
|
|
int64 createdAt = 7;
|
|
int32 count = 8;
|
|
int64 serverId = 9;
|
|
bool isFixed = 10;
|
|
int64 originId = 11;
|
|
bool isRead = 12;
|
|
bytes paramsJSON = 13;
|
|
string type = 14;
|
|
} |