30 lines
1.1 KiB
Go
30 lines
1.1 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// InfraJob is the golang structure of table infra_job for DAO operations like Where/Data.
|
|
type InfraJob struct {
|
|
g.Meta `orm:"table:infra_job, do:true"`
|
|
Id interface{} // 任务编号
|
|
Name interface{} // 任务名称
|
|
Status interface{} // 任务状态
|
|
HandlerName interface{} // 处理器的名字
|
|
HandlerParam interface{} // 处理器的参数
|
|
CronExpression interface{} // CRON 表达式
|
|
RetryCount interface{} // 重试次数
|
|
RetryInterval interface{} // 重试间隔
|
|
MonitorTimeout interface{} // 监控超时时间
|
|
Creator interface{} // 创建者
|
|
CreateTime *gtime.Time // 创建时间
|
|
Updater interface{} // 更新者
|
|
UpdateTime *gtime.Time // 更新时间
|
|
Deleted interface{} // 是否删除
|
|
}
|