You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
735 B
19 lines
735 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// Course is the golang structure for table course.
|
|
type Course struct {
|
|
Id uint `json:"id" orm:"id" ` //
|
|
Name string `json:"name" orm:"name" ` //
|
|
Day string `json:"day" orm:"day" ` //
|
|
CreateAt *gtime.Time `json:"createAt" orm:"create_at" ` //
|
|
UpdateAt *gtime.Time `json:"updateAt" orm:"update_at" ` //
|
|
DeleteAt *gtime.Time `json:"deleteAt" orm:"delete_at" ` //
|
|
}
|