mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
13 lines
305 B
Go
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"`
|
|
}
|