mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 02:48:34 +08:00
15 lines
499 B
Go
15 lines
499 B
Go
package entity
|
|
|
|
import (
|
|
"pandax/pkg/global/model"
|
|
)
|
|
|
|
type JobLog struct {
|
|
model.BaseAuthModel
|
|
Name string `json:"name" gorm:"type:varchar(128);comment:任务名称"`
|
|
EntryId int `json:"entryId" gorm:"type:int;comment:任务id"`
|
|
TargetInvoke string `json:"targetInvoke" gorm:"type:varchar(128);comment:调用方法"`
|
|
LogInfo string `json:"logInfo" gorm:"type:varchar(255);comment:日志信息"`
|
|
Status string `json:"status" gorm:"type:varchar(1);comment:状态"`
|
|
}
|