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

9 months ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // CollectTask is the golang structure for table collect_task.
  9. type CollectTask struct {
  10. Id uint `json:"id" ` //
  11. CollectId uint `json:"collect_id" ` // 采集
  12. Running int `json:"running" ` // 是否运行中
  13. Progress float64 `json:"progress" ` // 进度
  14. Status int `json:"status" ` // 状态
  15. Current int `json:"current" ` // 当前
  16. Total uint `json:"total" ` // 总记录
  17. PageCount uint `json:"page_count" ` // 总页数
  18. CurrentPage int `json:"current_page" ` // 当前页
  19. StartTime *gtime.Time `json:"start_time" ` // 开始时间
  20. LastTime *gtime.Time `json:"last_time" ` // 最后提交时间
  21. EndTime *gtime.Time `json:"end_time" ` // 结束时间
  22. UpdateTime int `json:"update_time" ` // 采集多少时间内
  23. }