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

28 lines
990 B
Go
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// LessonSection is the golang structure of table hg_lesson_section for DAO operations like Where/Data.
type LessonSection struct {
g.Meta `orm:"table:hg_lesson_section, do:true"`
Id interface{} // id
LessonId interface{} // 课程id
VideoUrl interface{} // 视频url
Name interface{} // 章节名
SortOrder interface{} // 排序号
ParentId interface{} // 父章节id
Level interface{} // 章节层级;1=章2=节
Revision interface{} // 乐观锁
CreatedBy interface{} // 创建人
CreatedTime *gtime.Time // 创建时间
UpdatedBy interface{} // 更新人
UpdatedTime *gtime.Time // 更新时间
}