You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.2 KiB
26 lines
1.2 KiB
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// CollectTask is the golang structure for table collect_task.
|
|
type CollectTask struct {
|
|
Id uint `json:"id" ` //
|
|
CollectId uint `json:"collect_id" ` // 采集
|
|
Running int `json:"running" ` // 是否运行中
|
|
Progress float64 `json:"progress" ` // 进度
|
|
Status int `json:"status" ` // 状态
|
|
Current int `json:"current" ` // 当前
|
|
Total uint `json:"total" ` // 总记录
|
|
PageCount uint `json:"page_count" ` // 总页数
|
|
CurrentPage int `json:"current_page" ` // 当前页
|
|
StartTime *gtime.Time `json:"start_time" ` // 开始时间
|
|
LastTime *gtime.Time `json:"last_time" ` // 最后提交时间
|
|
EndTime *gtime.Time `json:"end_time" ` // 结束时间
|
|
UpdateTime int `json:"update_time" ` // 采集多少时间内
|
|
}
|