mirror of
https://github.com/PengZhangs2017582/novel.git
synced 2025-06-23 18:51:31 +08:00
redis token
This commit is contained in:
27
internal/dao/permission_info.go
Normal file
27
internal/dao/permission_info.go
Normal file
@ -0,0 +1,27 @@
|
||||
// =================================================================================
|
||||
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
|
||||
// =================================================================================
|
||||
|
||||
package dao
|
||||
|
||||
import (
|
||||
"novel/internal/dao/internal"
|
||||
)
|
||||
|
||||
// internalPermissionInfoDao is internal type for wrapping internal DAO implements.
|
||||
type internalPermissionInfoDao = *internal.PermissionInfoDao
|
||||
|
||||
// permissionInfoDao is the data access object for table nv_permission_info.
|
||||
// You can define custom methods on it to extend its functionality as you wish.
|
||||
type permissionInfoDao struct {
|
||||
internalPermissionInfoDao
|
||||
}
|
||||
|
||||
var (
|
||||
// PermissionInfo is globally public accessible object for table nv_permission_info operations.
|
||||
PermissionInfo = permissionInfoDao{
|
||||
internal.NewPermissionInfoDao(),
|
||||
}
|
||||
)
|
||||
|
||||
// Fill with you ideas below.
|
Reference in New Issue
Block a user