github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_session.go (about)

     1  package sys_model
     2  
     3  import (
     4  	"github.com/gogf/gf/v2/container/garray"
     5  )
     6  
     7  // SessionContext 请求上下文结构
     8  type SessionContext struct {
     9  	JwtClaimsUser     *JwtCustomClaims // 上下文用户信息
    10  	Ipv4              string           // 客户端IP地址
    11  	SessionErrorQueue *garray.Array    // 会话错误队列
    12  }