mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 16:00:24 +08:00 
			
		
		
		
	
		
			
	
	
		
			14 lines
		
	
	
		
			215 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
		
			215 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| 
								 | 
							
								syntax = "proto3";
							 | 
						||
| 
								 | 
							
								option go_package = "./pb";
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								package pb;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								message NodeIPAddress {
							 | 
						||
| 
								 | 
							
									int64 id = 1;
							 | 
						||
| 
								 | 
							
									int64 nodeId = 2;
							 | 
						||
| 
								 | 
							
									string name = 3;
							 | 
						||
| 
								 | 
							
									string ip = 4;
							 | 
						||
| 
								 | 
							
									string description = 5;
							 | 
						||
| 
								 | 
							
									int64 state = 6;
							 | 
						||
| 
								 | 
							
									int64 order = 7;
							 | 
						||
| 
								 | 
							
								}
							 |