2025-07-25 16:52:32 +08:00

23 lines
748 B
Go
Executable File

// =================================================================================
// This file is auto-generated by the GoFrame CLI tool. You may modify it as needed.
// =================================================================================
package dao
import (
"hotgo/internal/dao/internal"
)
// lessonSectionDao is the data access object for the table hg_lesson_section.
// You can define custom methods on it to extend its functionality as needed.
type lessonSectionDao struct {
*internal.LessonSectionDao
}
var (
// LessonSection is a globally accessible object for table hg_lesson_section operations.
LessonSection = lessonSectionDao{internal.NewLessonSectionDao()}
)
// Add your custom methods and functionality below.