init
This commit is contained in:
28
internal/model/do/system_oauth_2_refresh_token.go
Normal file
28
internal/model/do/system_oauth_2_refresh_token.go
Normal file
@@ -0,0 +1,28 @@
|
||||
// =================================================================================
|
||||
// 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"
|
||||
)
|
||||
|
||||
// SystemOauth2RefreshToken is the golang structure of table system_oauth2_refresh_token for DAO operations like Where/Data.
|
||||
type SystemOauth2RefreshToken struct {
|
||||
g.Meta `orm:"table:system_oauth2_refresh_token, do:true"`
|
||||
Id interface{} // 编号
|
||||
UserId interface{} // 用户编号
|
||||
RefreshToken interface{} // 刷新令牌
|
||||
UserType interface{} // 用户类型
|
||||
ClientId interface{} // 客户端编号
|
||||
Scopes interface{} // 授权范围
|
||||
ExpiresTime *gtime.Time // 过期时间
|
||||
Creator interface{} // 创建者
|
||||
CreateTime *gtime.Time // 创建时间
|
||||
Updater interface{} // 更新者
|
||||
UpdateTime *gtime.Time // 更新时间
|
||||
Deleted interface{} // 是否删除
|
||||
TenantId interface{} // 租户编号
|
||||
}
|
||||
Reference in New Issue
Block a user