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:''"`
}