mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-03-19 08:25:37 +08:00
feat: 数据迁移新增实时日志&数据库游标遍历查询问题修复
This commit is contained in:
@@ -3,14 +3,16 @@ package vo
|
||||
import "time"
|
||||
|
||||
type DataSyncTaskListVO struct {
|
||||
Id *int64 `json:"id"`
|
||||
TaskName *string `json:"taskName"`
|
||||
Id int64 `json:"id"`
|
||||
TaskName string `json:"taskName"`
|
||||
CreateTime *time.Time `json:"createTime"`
|
||||
Creator string `json:"creator"`
|
||||
UpdateTime *time.Time `json:"updateTime"`
|
||||
ModifierId uint64 `json:"modifierId"`
|
||||
Modifier string `json:"modifier"`
|
||||
RecentState *int `json:"recentState"`
|
||||
RunningState *int `json:"runningState"`
|
||||
Status *int `json:"status"`
|
||||
RecentState int `json:"recentState"`
|
||||
RunningState int `json:"runningState"`
|
||||
Status int `json:"status"`
|
||||
}
|
||||
|
||||
type DataSyncLogListVO struct {
|
||||
|
||||
Reference in New Issue
Block a user