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.

28 lines
1016 B

9 months ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. "github.com/gogf/gf/v2/os/gtime"
  8. )
  9. // CollectTask is the golang structure of table cms_collect_task for DAO operations like Where/Data.
  10. type CollectTask struct {
  11. g.Meta `orm:"table:cms_collect_task, do:true"`
  12. Id interface{} //
  13. CollectId interface{} // 采集
  14. Running interface{} // 是否运行中
  15. Progress interface{} // 进度
  16. Status interface{} // 状态
  17. Current interface{} // 当前
  18. Total interface{} // 总记录
  19. PageCount interface{} // 总页数
  20. CurrentPage interface{} // 当前页
  21. StartTime *gtime.Time // 开始时间
  22. LastTime *gtime.Time // 最后提交时间
  23. EndTime *gtime.Time // 结束时间
  24. UpdateTime interface{} // 采集多少时间内
  25. }