mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
14 lines
242 B
Go
14 lines
242 B
Go
package system
|
||
|
||
// Authority 权限模型
|
||
type Authority struct {
|
||
// 编号
|
||
ID string
|
||
// 角色ID
|
||
RoleID string
|
||
// 类型(1-UI权限,2-接口权限)
|
||
Type int
|
||
// 权限数据(对应页面控件或服务端接口)
|
||
Date string
|
||
}
|