mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 13:47:15 +08:00
30 lines
819 B
Go
30 lines
819 B
Go
package biz
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/TheTNB/panel/internal/http/request"
|
|
)
|
|
|
|
type Cron struct {
|
|
ID uint `gorm:"primaryKey" json:"id"`
|
|
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"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
type CronRepo interface {
|
|
Count() (int64, error)
|
|
List(page, limit uint) ([]*Cron, int64, error)
|
|
Get(id uint) (*Cron, error)
|
|
Create(req *request.CronCreate) error
|
|
Update(req *request.CronUpdate) error
|
|
Delete(id uint) error
|
|
Status(id uint, status bool) error
|
|
}
|