// ================================================================================= // 本文件由 GoFrame CLI 工具生成并维护,请勿编辑。 // ================================================================================= package do import ( "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/os/gtime" ) // AuthRefreshSession 是表 auth_refresh_session 的 Go 结构体,供 DAO 的 Where/Data 等操作使用。 type AuthRefreshSession struct { g.Meta `orm:"table:auth_refresh_session, do:true"` Id any // SubjectId any // ????????? ID Scope any // user/admin Terminal any // mini/h5/app Jti any // JWT ?????? ExpiredAt *gtime.Time // RevokedAt *gtime.Time // CreatedAt *gtime.Time // UpdatedAt *gtime.Time // DeletedAt *gtime.Time // }