增加流量包相关接口

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,12 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
// 流量包价格定义
message TrafficPackagePrice {
int64 trafficPackageId = 1;
int64 nodeRegionId = 2;
int64 trafficPackagePeriodId = 3;
float price = 4;
}