mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 05:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			513 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			513 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
option go_package = "./pb";
 | 
						|
 | 
						|
package pb;
 | 
						|
 | 
						|
import "models/model_dns_route.proto";
 | 
						|
 | 
						|
message DNSDomain {
 | 
						|
	int64 id = 1;
 | 
						|
	string name = 2;
 | 
						|
	bool isOn = 3;
 | 
						|
	int64 dataUpdatedAt = 4;
 | 
						|
	string dataError = 5;
 | 
						|
	int64 countServerRecords = 6;
 | 
						|
	int64 countAllServers = 13;
 | 
						|
	bool serversChanged = 7;
 | 
						|
	int64 countNodeRecords = 8;
 | 
						|
	int64 countAllNodes = 14;
 | 
						|
	bool nodesChanged = 9;
 | 
						|
	repeated DNSRoute routes = 10;
 | 
						|
	int64 providerId = 11;
 | 
						|
	int64 countNodeClusters = 12;
 | 
						|
	bool isUp = 15;
 | 
						|
	bool isDeleted = 16;
 | 
						|
}
 |