30 lines
354 B
Go
30 lines
354 B
Go
package schema
|
|
|
|
type ItemType int
|
|
|
|
const (
|
|
TYPE_AUDIO ItemType = iota
|
|
TYPE_VIDEO
|
|
TYPE_WEB
|
|
TYPE_TTS
|
|
TYPE_RELAY
|
|
)
|
|
|
|
type TimeModel struct {
|
|
Start int64
|
|
End int64
|
|
}
|
|
|
|
type BackgroundItemModel struct {
|
|
TimeModel
|
|
Interval int64
|
|
Type ItemType
|
|
Data string
|
|
}
|
|
|
|
type BackgroundModel struct {
|
|
JsonModel
|
|
TimeModel
|
|
Items []BackgroundItemModel
|
|
}
|