2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-05 00:39:32 +08:00
Files
panel/app/models/cron.go
2023-06-22 16:51:37 +08:00

16 lines
328 B
Go

package models
import (
"github.com/goravel/framework/database/orm"
)
type Cron struct {
orm.Model
Name string `gorm:"not null;unique"`
Status bool `gorm:"not null;default:false"`
Type string `gorm:"not null"`
Time string `gorm:"not null"`
Shell string `gorm:"default:''"`
Log string `gorm:"default:''"`
}