23 lines
835 B
Go
23 lines
835 B
Go
// =================================================================================
|
|
// This file is auto-generated by the GoFrame CLI tool. You may modify it as needed.
|
|
// =================================================================================
|
|
|
|
package dao
|
|
|
|
import (
|
|
"epic/internal/dao/internal"
|
|
)
|
|
|
|
// systemOauth2AccessTokenDao is the data access object for the table system_oauth2_access_token.
|
|
// You can define custom methods on it to extend its functionality as needed.
|
|
type systemOauth2AccessTokenDao struct {
|
|
*internal.SystemOauth2AccessTokenDao
|
|
}
|
|
|
|
var (
|
|
// SystemOauth2AccessToken is a globally accessible object for table system_oauth2_access_token operations.
|
|
SystemOauth2AccessToken = systemOauth2AccessTokenDao{internal.NewSystemOauth2AccessTokenDao()}
|
|
)
|
|
|
|
// Add your custom methods and functionality below.
|