Files
mayfly-go/base/ctx/login_account.go

13 lines
205 B
Go
Raw Normal View History

2021-01-08 15:37:32 +08:00
package ctx
type LoginAccount struct {
Id uint64
Username string
}
type Permission struct {
CheckToken bool // 是否检查token
Code string // 权限码
Name string // 描述
}