18 lines
546 B
18 lines
546 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
// Lecturers is the golang structure of table lecturers for DAO operations like Where/Data.
|
|
type Lecturers struct {
|
|
g.Meta `orm:"table:lecturers, do:true"`
|
|
Id interface{} //
|
|
Jwcode interface{} //
|
|
Avatar interface{} //
|
|
Name interface{} //
|
|
}
|