mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-16 14:50:25 +08:00
12 lines
224 B
Protocol Buffer
12 lines
224 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
option go_package = "./pb";
|
||
|
|
|
||
|
|
package pb;
|
||
|
|
|
||
|
|
// 流量包价格定义
|
||
|
|
message TrafficPackagePrice {
|
||
|
|
int64 trafficPackageId = 1;
|
||
|
|
int64 nodeRegionId = 2;
|
||
|
|
int64 trafficPackagePeriodId = 3;
|
||
|
|
float price = 4;
|
||
|
|
}
|