mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 21:50:26 +08:00 
			
		
		
		
	
		
			
	
	
		
			18 lines
		
	
	
		
			385 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
		
			385 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| 
								 | 
							
								syntax = "proto3";
							 | 
						||
| 
								 | 
							
								option go_package = "./pb";
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								package pb;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import "models/message_recipient.proto";
							 | 
						||
| 
								 | 
							
								import "models/message_recipient_group.proto";
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								message MessageReceiver {
							 | 
						||
| 
								 | 
							
									int64 id = 1;
							 | 
						||
| 
								 | 
							
									int64 clusterId = 2;
							 | 
						||
| 
								 | 
							
									int64 nodeId = 3;
							 | 
						||
| 
								 | 
							
									int64 serverId = 4;
							 | 
						||
| 
								 | 
							
									string type = 5;
							 | 
						||
| 
								 | 
							
									bytes paramsJSON = 6;
							 | 
						||
| 
								 | 
							
									MessageRecipient messageRecipient = 7;
							 | 
						||
| 
								 | 
							
									MessageRecipientGroup messageRecipientGroup = 8;
							 | 
						||
| 
								 | 
							
								}
							 |