26 lines
838 B
Go
26 lines
838 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// AuthRefreshSession is the golang structure of table auth_refresh_session for DAO operations like 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 //
|
|
}
|