增加流量包相关接口

This commit is contained in:
刘祥超
2022-10-20 10:24:52 +08:00
parent e98de100b9
commit 1e75f61464
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;
}