Files
EdgeCommon/pkg/rpc/protos/models/model_user_traffic_bill.proto

23 lines
474 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
option go_package = "./pb";
package pb;
import "models/model_node_region.proto";
// 用户流量带宽子账单
message UserTrafficBill {
int64 id = 1;
int64 billId = 2;
int64 nodeRegionId = 3;
double amount = 4;
double bandwidthMB = 5;
int32 bandwidthPercentile = 6;
double trafficGB = 7;
double trafficPackageGB = 8;
2022-10-20 10:24:52 +08:00
repeated int64 userTrafficPackageIds = 9;
double pricePerUnit = 10;
2022-10-20 10:24:52 +08:00
string priceType = 11;
NodeRegion nodeRegion = 30;
}