2025-12-07 16:45:00 +08:00
|
|
|
package video
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type Video struct {
|
|
|
|
|
ID uint `gorm:"primaryKey"`
|
|
|
|
|
AuthorID uint `gorm:"index;not null"`
|
|
|
|
|
Title string `gorm:"type:varchar(255);not null"`
|
|
|
|
|
Description string `gorm:"type:varchar(255);"`
|
|
|
|
|
PlayURL string `gorm:"type:varchar(255);not null"`
|
2025-12-09 21:11:29 +08:00
|
|
|
CoverURL string `gorm:"type:varchar(255);not null"`
|
2025-12-07 16:45:00 +08:00
|
|
|
CreateTime time.Time `gorm:"autoCreateTime"`
|
2025-12-09 21:11:29 +08:00
|
|
|
LikesCount int64 `gorm:"column:likes_count;not null;default:0" json:"likes_count"`
|
2025-12-07 16:45:00 +08:00
|
|
|
}
|