mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 13:10:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			265 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			265 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package systemconfigs
 | 
						|
 | 
						|
// AdminModule 管理用户模块权限
 | 
						|
type AdminModule struct {
 | 
						|
	Code     string   `json:"code"`     // 模块代号
 | 
						|
	AllowAll bool     `json:"allowAll"` // 允许所有的动作
 | 
						|
	Actions  []string `json:"actions"`  // 只允许的动作
 | 
						|
}
 |