Files
EdgeCommon/pkg/rpc/protos/models/model_node_log.proto

21 lines
358 B
Protocol Buffer
Raw Normal View History

2020-10-09 11:06:47 +08:00
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;
2021-08-01 21:56:15 +08:00
int64 originId = 11;
bool isRead = 12;
2021-11-30 16:42:27 +08:00
bytes paramsJSON = 13;
string type = 14;
2020-10-09 11:06:47 +08:00
}