2023-01-18 16:23:39 +08:00
|
|
|
// =================================================================================
|
|
|
|
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
|
|
|
|
// =================================================================================
|
|
|
|
|
|
|
|
package dao
|
|
|
|
|
|
|
|
import (
|
|
|
|
"hotgo/internal/dao/internal"
|
|
|
|
)
|
|
|
|
|
2023-01-25 11:49:21 +08:00
|
|
|
// internalSysServeLogDao is internal type for wrapping internal DAO implements.
|
|
|
|
type internalSysServeLogDao = *internal.SysServeLogDao
|
2023-01-18 16:23:39 +08:00
|
|
|
|
2023-01-25 11:49:21 +08:00
|
|
|
// sysServeLogDao is the data access object for table hg_sys_serve_log.
|
2023-01-18 16:23:39 +08:00
|
|
|
// You can define custom methods on it to extend its functionality as you wish.
|
2023-01-25 11:49:21 +08:00
|
|
|
type sysServeLogDao struct {
|
|
|
|
internalSysServeLogDao
|
2023-01-18 16:23:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2023-01-25 11:49:21 +08:00
|
|
|
// SysServeLog is globally public accessible object for table hg_sys_serve_log operations.
|
|
|
|
SysServeLog = sysServeLogDao{
|
|
|
|
internal.NewSysServeLogDao(),
|
2023-01-18 16:23:39 +08:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
// Fill with you ideas below.
|