coai/admin/types.go
2023-11-07 13:56:03 +08:00

33 lines
659 B
Go

package admin
type InfoForm struct {
BillingToday int64 `json:"billing_today"`
BillingMonth int64 `json:"billing_month"`
SubscriptionCount int64 `json:"subscription_count"`
}
type ModelData struct {
Model string `json:"model"`
Data []int64 `json:"data"`
}
type ModelChartForm struct {
Date []string `json:"date"`
Value []ModelData `json:"value"`
}
type RequestChartForm struct {
Date []string `json:"date"`
Value []int64 `json:"value"`
}
type BillingChartForm struct {
Date []string `json:"date"`
Value []float32 `json:"value"`
}
type ErrorChartForm struct {
Date []string `json:"date"`
Value []int64 `json:"value"`
}