Files
SafeLine/management/webserver/model/statistics.go
2024-07-04 17:54:34 +08:00

12 lines
453 B
Go

package model
import "time"
type SystemStatistics struct {
ID uint `json:"id" gorm:"primarykey"`
Type string `json:"type" gorm:"index;uniqueIndex:type_website_createdat"`
Value int64 `json:"value"`
CreatedAt time.Time `json:"created_at" gorm:"index;uniqueIndex:type_website_createdat"`
Website string `json:"website" gorm:"index;uniqueIndex:type_website_createdat"`
}