mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
14 lines
261 B
Go
14 lines
261 B
Go
package pkg
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
// RecordPlan 录制计划模型
|
|
type RecordPlan struct {
|
|
gorm.Model
|
|
Name string `json:"name" gorm:"default:''"`
|
|
Plan string `json:"plan" gorm:"type:text"`
|
|
Enabled bool `json:"enabled" gorm:"default:true"`
|
|
}
|