This commit is contained in:
PandaX
2024-02-01 13:44:51 +08:00
parent 81c073260f
commit 5c1f7f630e
10 changed files with 7 additions and 24 deletions

View File

@@ -15,5 +15,4 @@ type SysJob struct {
Status string `json:"status" gorm:"type:varchar(1);"` // 状态
EntryId int `json:"entryId" gorm:"type:int;"` // job启动时返回的id
RoleId int64 `gorm:"-"` // 角色数据权限
}

View File

@@ -11,6 +11,4 @@ type JobLog struct {
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:状态"`
RoleId int64 `gorm:"-"` // 角色数据权限
}