2020-03-29 09:25:27 +08:00

14 lines
242 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package system
// Authority 权限模型
type Authority struct {
// 编号
ID string
// 角色ID
RoleID string
// 类型1-UI权限,2-接口权限)
Type int
// 权限数据(对应页面控件或服务端接口)
Date string
}