mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
17 lines
283 B
Protocol Buffer
17 lines
283 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message ReportResult {
|
|
int64 id = 1;
|
|
string type = 2;
|
|
int64 targetId = 3;
|
|
string targetDesc = 4;
|
|
int64 reportNodeId = 5;
|
|
bool isOk = 6;
|
|
float costMs = 7;
|
|
string error = 8;
|
|
int64 updatedAt = 9;
|
|
string level =10;
|
|
} |