mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 05:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			296 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			296 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
option go_package = "./pb";
 | 
						|
 | 
						|
package pb;
 | 
						|
 | 
						|
import "models/model_admin_module.proto";
 | 
						|
 | 
						|
message AdminModuleList {
 | 
						|
	int64 adminId = 1;
 | 
						|
	bool isSuper = 2;
 | 
						|
	repeated AdminModule Modules = 3;
 | 
						|
	string fullname = 4;
 | 
						|
	string theme = 5; // 风格模板
 | 
						|
	string lang = 6; // 界面语言
 | 
						|
} |