29 lines
2.1 KiB
Go
29 lines
2.1 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// InfraJobLog is the golang structure for table infra_job_log.
|
|
type InfraJobLog struct {
|
|
Id int64 `json:"id" orm:"id" description:"日志编号"` // 日志编号
|
|
JobId int64 `json:"jobId" orm:"job_id" description:"任务编号"` // 任务编号
|
|
HandlerName string `json:"handlerName" orm:"handler_name" description:"处理器的名字"` // 处理器的名字
|
|
HandlerParam string `json:"handlerParam" orm:"handler_param" description:"处理器的参数"` // 处理器的参数
|
|
ExecuteIndex int `json:"executeIndex" orm:"execute_index" description:"第几次执行"` // 第几次执行
|
|
BeginTime *gtime.Time `json:"beginTime" orm:"begin_time" description:"开始执行时间"` // 开始执行时间
|
|
EndTime *gtime.Time `json:"endTime" orm:"end_time" description:"结束执行时间"` // 结束执行时间
|
|
Duration int `json:"duration" orm:"duration" description:"执行时长"` // 执行时长
|
|
Status int `json:"status" orm:"status" description:"任务状态"` // 任务状态
|
|
Result string `json:"result" orm:"result" description:"结果数据"` // 结果数据
|
|
Creator string `json:"creator" orm:"creator" description:"创建者"` // 创建者
|
|
CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:"创建时间"` // 创建时间
|
|
Updater string `json:"updater" orm:"updater" description:"更新者"` // 更新者
|
|
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:"更新时间"` // 更新时间
|
|
Deleted bool `json:"deleted" orm:"deleted" description:"是否删除"` // 是否删除
|
|
}
|