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.
22 lines
805 B
22 lines
805 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// HotVideo is the golang structure for table hot_video.
|
|
type HotVideo struct {
|
|
Id int `json:"id" ` //
|
|
ClassId int `json:"class_id" ` //
|
|
VodName string `json:"vod_name" ` //
|
|
VodPic string `json:"vod_pic" ` //
|
|
VodTime *gtime.Time `json:"vod_time" ` //
|
|
Score int64 `json:"score" ` //
|
|
CreatedAt *gtime.Time `json:"created_at" ` //
|
|
UpdatedAt *gtime.Time `json:"updated_at" ` //
|
|
DeletedAt *gtime.Time `json:"deleted_at" ` //
|
|
}
|