Files
mayfly-go/base/model/login_account.go
2021-04-16 15:10:07 +08:00

16 lines
235 B
Go

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