mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 19:37:18 +08:00
14 lines
379 B
Go
14 lines
379 B
Go
package models
|
|
|
|
import "github.com/goravel/framework/database/orm"
|
|
|
|
type Cron struct {
|
|
orm.Model
|
|
Name string `gorm:"not null;unique" json:"name"`
|
|
Status bool `gorm:"not null" json:"status"`
|
|
Type string `gorm:"not null" json:"type"`
|
|
Time string `gorm:"not null" json:"time"`
|
|
Shell string `gorm:"not null" json:"shell"`
|
|
Log string `gorm:"not null" json:"log"`
|
|
}
|