Files
crawlab/core/entity/stats.go
2024-06-14 15:42:50 +08:00

13 lines
305 B
Go

package entity
type StatsDailyItem struct {
Date string `json:"date" bson:"_id"`
Tasks int64 `json:"tasks" bson:"tasks"`
Results int64 `json:"results" bson:"results"`
}
type StatsTasksByStatusItem struct {
Status string `json:"status" bson:"_id"`
Tasks int64 `json:"tasks" bson:"tasks"`
}