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.

21 lines
931 B

  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. "github.com/gogf/gf/v2/os/gtime"
  8. )
  9. // GoLives is the golang structure of table go_lives for DAO operations like Where/Data.
  10. type GoLives struct {
  11. g.Meta `orm:"table:go_lives, do:true"`
  12. Id interface{} // 直播唯一ID,自增
  13. Cover interface{} // 直播封面路径或相关标识,可为空
  14. UserId interface{} // 关联的用户ID,指向go_users表的id,长度为8位整数,不能为空
  15. LiveName interface{} // 直播名称,最大长度255字符,不能为空
  16. StartTime *gtime.Time // 直播开始时间,不能为空
  17. Status interface{} // 直播状态,0:未开播 1:已开播,不能为空
  18. }