Files
mayfly-go/base/ctx/login_account.go
2021-03-24 17:18:39 +08:00

16 lines
233 B
Go

package ctx
type AppContext struct {
}
type LoginAccount struct {
Id uint64
Username string
}
type Permission struct {
CheckToken bool // 是否检查token
Code string // 权限码
Name string // 描述
}