// ================================================================================= // 本文件由 GoFrame CLI 工具生成并维护,请勿编辑。 // ================================================================================= package entity import ( "github.com/gogf/gf/v2/os/gtime" ) // AuthRefreshSession 是表 auth_refresh_session 的 Go 结构体。 type AuthRefreshSession struct { Id uint64 `json:"id" orm:"id" description:""` // SubjectId uint64 `json:"subjectId" orm:"subject_id" description:"????????? ID"` // ????????? ID Scope string `json:"scope" orm:"scope" description:"user/admin"` // user/admin Terminal string `json:"terminal" orm:"terminal" description:"mini/h5/app"` // mini/h5/app Jti string `json:"jti" orm:"jti" description:"JWT ??????"` // JWT ?????? ExpiredAt *gtime.Time `json:"expiredAt" orm:"expired_at" description:""` // RevokedAt *gtime.Time `json:"revokedAt" orm:"revoked_at" description:""` // CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:""` // UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:""` // DeletedAt *gtime.Time `json:"deletedAt" orm:"deleted_at" description:""` // }