mirror of
https://github.com/PengZhangs2017582/novel.git
synced 2025-06-24 11:11:30 +08:00
28 lines
804 B
Go
28 lines
804 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"
|
|
)
|
|
|
|
// internalReadLogDao is internal type for wrapping internal DAO implements.
|
|
type internalReadLogDao = *internal.ReadLogDao
|
|
|
|
// readLogDao is the data access object for table nv_read_log.
|
|
// You can define custom methods on it to extend its functionality as you wish.
|
|
type readLogDao struct {
|
|
internalReadLogDao
|
|
}
|
|
|
|
var (
|
|
// ReadLog is globally public accessible object for table nv_read_log operations.
|
|
ReadLog = readLogDao{
|
|
internal.NewReadLogDao(),
|
|
}
|
|
)
|
|
|
|
// Fill with you ideas below.
|