32 lines
754 B
Go
32 lines
754 B
Go
package rest
|
|
|
|
/**
|
|
* 系统的所有访问记录均记录在此
|
|
*/
|
|
type Dashboard struct {
|
|
Base
|
|
InvokeNum int64 `json:"invokeNum"`
|
|
TotalInvokeNum int64 `json:"totalInvokeNum"`
|
|
Uv int64 `json:"uv"`
|
|
TotalUv int64 `json:"totalUv"`
|
|
MatterNum int64 `json:"matterNum"`
|
|
TotalMatterNum int64 `json:"totalMatterNum"`
|
|
FileSize int64 `json:"fileSize"`
|
|
TotalFileSize int64 `json:"totalFileSize"`
|
|
AvgCost int64 `json:"avgCost"`
|
|
Dt string `json:"dt"`
|
|
}
|
|
|
|
// set File's table name to be `profiles`
|
|
func (Dashboard) TableName() string {
|
|
return TABLE_PREFIX + "dashboard"
|
|
}
|
|
|
|
/**
|
|
* 统计IP活跃数的
|
|
*/
|
|
type DashboardIpTimes struct {
|
|
Ip string `json:"ip"`
|
|
Times int64 `json:"times"`
|
|
}
|