mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
16 lines
235 B
Go
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 // 描述
|
||
|
|
}
|