Files
epic-go/internal/model/do/system_oauth_2_client.go
hu xiaotong 85e3a6540b init
2025-06-20 17:17:02 +08:00

37 lines
1.7 KiB
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"
)
// SystemOauth2Client is the golang structure of table system_oauth2_client for DAO operations like Where/Data.
type SystemOauth2Client struct {
g.Meta `orm:"table:system_oauth2_client, do:true"`
Id interface{} // 编号
ClientId interface{} // 客户端编号
Secret interface{} // 客户端密钥
Name interface{} // 应用名
Logo interface{} // 应用图标
Description interface{} // 应用描述
Status interface{} // 状态
AccessTokenValiditySeconds interface{} // 访问令牌的有效期
RefreshTokenValiditySeconds interface{} // 刷新令牌的有效期
RedirectUris interface{} // 可重定向的 URI 地址
AuthorizedGrantTypes interface{} // 授权类型
Scopes interface{} // 授权范围
AutoApproveScopes interface{} // 自动通过的授权范围
Authorities interface{} // 权限
ResourceIds interface{} // 资源
AdditionalInformation interface{} // 附加信息
Creator interface{} // 创建者
CreateTime *gtime.Time // 创建时间
Updater interface{} // 更新者
UpdateTime *gtime.Time // 更新时间
Deleted interface{} // 是否删除
}