feat:站点状态显示

This commit is contained in:
jxxghp
2024-04-17 14:38:40 +08:00
parent 5bd9283177
commit 468607c8e8
5 changed files with 87 additions and 3 deletions

View File

@@ -505,6 +505,33 @@ export interface Site {
is_active: boolean
}
// 站点使用统计
export interface SiteStatistic {
// 站点主域名Key
domain?: string
// 成功次数
success?: number
// 失败次数
fail?: number
// 平均耗时
seconds?: number
// 最后一次访问状态 0-成功 1-失败
lst_state?: number
// 最后访问时间
lst_mod_date?: string
// 耗时记录 JSON
note?: string
}
// 正在下载
export interface DownloadingInfo {