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.
|
|
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import ( "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/os/gtime" )
// CollectTask is the golang structure of table cms_collect_task for DAO operations like Where/Data.
type CollectTask struct { g.Meta `orm:"table:cms_collect_task, do:true"` Id interface{} //
CollectId interface{} // 采集
Running interface{} // 是否运行中
Progress interface{} // 进度
Status interface{} // 状态
Current interface{} // 当前
Total interface{} // 总记录
PageCount interface{} // 总页数
CurrentPage interface{} // 当前页
StartTime *gtime.Time // 开始时间
LastTime *gtime.Time // 最后提交时间
EndTime *gtime.Time // 结束时间
UpdateTime interface{} // 采集多少时间内
}
|