2025-12-09 15:30:16 +08:00
|
|
|
package video
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type Like struct {
|
2025-12-16 18:52:09 +08:00
|
|
|
ID uint `gorm:"primaryKey" json:"id"`
|
|
|
|
|
VideoID uint `gorm:"uniqueIndex:idx_like_video_account;not null" json:"video_id"`
|
|
|
|
|
AccountID uint `gorm:"uniqueIndex:idx_like_video_account;not null" json:"account_id"`
|
|
|
|
|
CreatedAt time.Time `json:"created_at"`
|
2025-12-09 15:30:16 +08:00
|
|
|
}
|
2025-12-15 17:32:56 +08:00
|
|
|
|
|
|
|
|
type LikeRequest struct {
|
|
|
|
|
VideoID uint `json:"video_id"`
|
|
|
|
|
}
|