mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-02-03 02:54:41 +08:00
26 lines
797 B
Go
26 lines
797 B
Go
// =================================================================================
|
|
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
|
|
// =================================================================================
|
|
|
|
package dao
|
|
|
|
import (
|
|
"hotgo/internal/dao/internal"
|
|
)
|
|
|
|
// internalAdminMenuDao is internal type for wrapping internal DAO implements.
|
|
type internalAdminMenuDao = *internal.AdminMenuDao
|
|
|
|
// adminMenuDao is the data access object for table hg_admin_menu.
|
|
// You can define custom methods on it to extend its functionality as you wish.
|
|
type adminMenuDao struct {
|
|
internalAdminMenuDao
|
|
}
|
|
|
|
var (
|
|
// AdminMenu is globally common accessible object for table hg_admin_menu operations.
|
|
AdminMenu = adminMenuDao{
|
|
internal.NewAdminMenuDao(),
|
|
}
|
|
)
|