区域监控可以上传监控数据

This commit is contained in:
刘祥超
2021-09-06 09:16:41 +08:00
parent fad5f16abf
commit 8e49d4a5f3
7 changed files with 1128 additions and 68 deletions

View File

@@ -0,0 +1,16 @@
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;
}