mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
17 lines
492 B
Go
17 lines
492 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
import "mayfly-go/pkg/model"
|
||
|
|
|
||
|
|
// 机器任务配置
|
||
|
|
type MachineTaskConfig struct {
|
||
|
|
model.Model
|
||
|
|
|
||
|
|
Name string `json:"name"`
|
||
|
|
Cron string `json:"cron"` // cron表达式
|
||
|
|
Script string `json:"script"` // 任务内容
|
||
|
|
Status string `json:"status"`
|
||
|
|
EnableNotify int `json:"enableNotify"` // 是否启用通知
|
||
|
|
NotifyTemplate string `json:"notifyTemplate"` // 通知模板
|
||
|
|
Remark string `json:"remark"` // 备注
|
||
|
|
}
|