24 lines
1.3 KiB
Go
24 lines
1.3 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// AuthRefreshSession is the golang structure for table auth_refresh_session.
|
|
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:""` //
|
|
}
|