mirror of
https://github.com/PengZhangs2017582/novel.git
synced 2025-06-22 18:21:35 +08:00
28 lines
816 B
Go
28 lines
816 B
Go
// =================================================================================
|
|
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
|
|
// =================================================================================
|
|
|
|
package dao
|
|
|
|
import (
|
|
"novel/internal/dao/internal"
|
|
)
|
|
|
|
// internalRoleInfoDao is internal type for wrapping internal DAO implements.
|
|
type internalRoleInfoDao = *internal.RoleInfoDao
|
|
|
|
// roleInfoDao is the data access object for table nv_role_info.
|
|
// You can define custom methods on it to extend its functionality as you wish.
|
|
type roleInfoDao struct {
|
|
internalRoleInfoDao
|
|
}
|
|
|
|
var (
|
|
// RoleInfo is globally public accessible object for table nv_role_info operations.
|
|
RoleInfo = roleInfoDao{
|
|
internal.NewRoleInfoDao(),
|
|
}
|
|
)
|
|
|
|
// Fill with you ideas below.
|