mirror of
https://github.com/PengZhangs2017582/novel.git
synced 2025-06-23 02:31:35 +08:00
23 lines
588 B
Go
23 lines
588 B
Go
package model
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/frame/g"
|
||
"github.com/gogf/gf/v2/net/ghttp"
|
||
)
|
||
|
||
// Context 请求上下文结构
|
||
type Context struct {
|
||
Session *ghttp.Session // 当前Session管理对象
|
||
User *ContextUser // 上下文用户信息
|
||
Data g.Map // 自定KV变量,业务模块根据需要设置,不固定
|
||
}
|
||
|
||
// ContextUser 请求上下文中的用户信息
|
||
type ContextUser struct {
|
||
Id uint // 用户ID
|
||
// Name string // 用户账号
|
||
// //Nickname string // 用户名称
|
||
// //Avatar string // 用户头像
|
||
// IsAdmin uint8 // 是否是管理员
|
||
}
|