mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 05:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			469 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			469 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
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;
 | 
						|
	float amount = 4;
 | 
						|
	float bandwidthMB = 5;
 | 
						|
	int32 bandwidthPercentile = 6;
 | 
						|
	float trafficGB = 7;
 | 
						|
	float trafficPackageGB = 8;
 | 
						|
	repeated int64 userTrafficPackageIds = 9;
 | 
						|
	float pricePerUnit = 10;
 | 
						|
	string priceType = 11;
 | 
						|
 | 
						|
	NodeRegion nodeRegion = 30;
 | 
						|
} |