31 lines
1.1 KiB
Go
31 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"
|
|
)
|
|
|
|
// InfraJobLog is the golang structure of table infra_job_log for DAO operations like Where/Data.
|
|
type InfraJobLog struct {
|
|
g.Meta `orm:"table:infra_job_log, do:true"`
|
|
Id interface{} // 日志编号
|
|
JobId interface{} // 任务编号
|
|
HandlerName interface{} // 处理器的名字
|
|
HandlerParam interface{} // 处理器的参数
|
|
ExecuteIndex interface{} // 第几次执行
|
|
BeginTime *gtime.Time // 开始执行时间
|
|
EndTime *gtime.Time // 结束执行时间
|
|
Duration interface{} // 执行时长
|
|
Status interface{} // 任务状态
|
|
Result interface{} // 结果数据
|
|
Creator interface{} // 创建者
|
|
CreateTime *gtime.Time // 创建时间
|
|
Updater interface{} // 更新者
|
|
UpdateTime *gtime.Time // 更新时间
|
|
Deleted interface{} // 是否删除
|
|
}
|