41 lines
1.2 KiB
Go
41 lines
1.2 KiB
Go
package video
|
|
|
|
import "time"
|
|
|
|
type Video struct {
|
|
ID uint `gorm:"primaryKey" json:"id"`
|
|
AuthorID uint `gorm:"index;not null" json:"author_id"`
|
|
Username string `gorm:"type:varchar(255);not null" json:"username"`
|
|
Title string `gorm:"type:varchar(255);not null" json:"title"`
|
|
Description string `gorm:"type:varchar(255);" json:"description,omitempty"`
|
|
PlayURL string `gorm:"type:varchar(255);not null" json:"play_url"`
|
|
CoverURL string `gorm:"type:varchar(255);not null" json:"cover_url"`
|
|
CreateTime time.Time `gorm:"autoCreateTime" json:"create_time"`
|
|
LikesCount int64 `gorm:"column:likes_count;not null;default:0" json:"likes_count"`
|
|
Popularity int64 `gorm:"column:popularity;not null;default:0" json:"popularity"`
|
|
}
|
|
|
|
type PublishVideoRequest struct {
|
|
Title string `json:"title"`
|
|
Description string `json:"description"`
|
|
PlayURL string `json:"play_url"`
|
|
CoverURL string `json:"cover_url"`
|
|
}
|
|
|
|
type DeleteVideoRequest struct {
|
|
ID uint `json:"id"`
|
|
}
|
|
|
|
type ListByAuthorIDRequest struct {
|
|
AuthorID uint `json:"author_id"`
|
|
}
|
|
|
|
type GetDetailRequest struct {
|
|
ID uint `json:"id"`
|
|
}
|
|
|
|
type UpdateLikesCountRequest struct {
|
|
ID uint `json:"id"`
|
|
LikesCount int64 `json:"likes_count"`
|
|
}
|