spider-scheduler/pkg/dao/model/liveroom.go

9 lines
208 B
Go

package model
type LiveRoom struct {
ID uint `gorm:"primarykey"`
RoomID uint `gorm:"uniqueIndex;not null"`
Title string `gorm:"not null;default:''"`
Tags string `gorm:"not null;default:''"`
}