2023-01-20 10:53:34 +08:00

18 lines
646 B
Go

// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// SysJobLog is the golang structure for table sys_job_log.
type SysJobLog struct {
Id uint64 `json:"id" description:"主键"`
TargetName string `json:"targetName" description:"方法名"`
CreatedAt *gtime.Time `json:"createdAt" description:"执行日期"`
Result string `json:"result" description:"执行结果"`
}