mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
10 lines
167 B
Go
10 lines
167 B
Go
package system
|
|
|
|
// OperatingAuthoritySave 操作权限保存模型
|
|
type OperatingAuthoritySave struct {
|
|
// 角色ID
|
|
RoleID string
|
|
// 权限
|
|
Authorities []string
|
|
}
|