mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 05:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			393 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			393 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
option go_package = "./pb";
 | 
						|
 | 
						|
package pb;
 | 
						|
 | 
						|
import "models/model_node.proto";
 | 
						|
 | 
						|
message NodeThreshold {
 | 
						|
	int64 id = 1;
 | 
						|
	int64 clusterId = 2;
 | 
						|
	Node node = 3;
 | 
						|
	string item = 4;
 | 
						|
	string param = 5;
 | 
						|
	string operator = 6;
 | 
						|
	bytes valueJSON = 7;
 | 
						|
	string message = 8;
 | 
						|
	int32 duration = 9;
 | 
						|
	string durationUnit = 10;
 | 
						|
	string sumMethod = 11;
 | 
						|
	bool isOn = 12;
 | 
						|
	int32 notifyDuration = 13;
 | 
						|
} |