Files
crawlab/core/entity/stats.go
2024-10-20 17:17:08 +08:00

8 lines
180 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"`
}