增加流量包相关接口

This commit is contained in:
GoEdgeLab
2022-10-20 10:24:52 +08:00
parent b501b408a0
commit 64fb6aa595
19 changed files with 9790 additions and 3806 deletions

View File

@@ -0,0 +1,13 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
// 流量包
message TrafficPackage {
int64 id = 1;
int32 size = 2;
string unit = 3;
int64 bytes = 4;
bool isOn = 5;
}