mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 07:57:21 +08:00
14 lines
263 B
Go
14 lines
263 B
Go
package models
|
|
|
|
import (
|
|
"github.com/goravel/framework/database/orm"
|
|
)
|
|
|
|
type Task struct {
|
|
orm.Model
|
|
Name string `gorm:"not null"`
|
|
Status string `gorm:"not null;default:'waiting'"`
|
|
Shell string `gorm:"default:null"`
|
|
Log string `gorm:"default:null"`
|
|
}
|