28 lines
976 B
Go
Executable File
28 lines
976 B
Go
Executable File
// =================================================================================
|
|
// 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{} // 章节层级
|
|
Revision interface{} // 乐观锁
|
|
CreatedBy interface{} // 创建人
|
|
CreatedTime *gtime.Time // 创建时间
|
|
UpdatedBy interface{} // 更新人
|
|
UpdatedTime *gtime.Time // 更新时间
|
|
}
|