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

9 months ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // HotVideo is the golang structure for table hot_video.
  9. type HotVideo struct {
  10. Id int `json:"id" ` //
  11. ClassId int `json:"class_id" ` //
  12. VodName string `json:"vod_name" ` //
  13. VodPic string `json:"vod_pic" ` //
  14. VodTime *gtime.Time `json:"vod_time" ` //
  15. Score int64 `json:"score" ` //
  16. CreatedAt *gtime.Time `json:"created_at" ` //
  17. UpdatedAt *gtime.Time `json:"updated_at" ` //
  18. DeletedAt *gtime.Time `json:"deleted_at" ` //
  19. }