Add online info to statistics management page

This commit is contained in:
2023-12-19 09:07:41 +08:00
parent 8ac27b6e61
commit 33368f7f89
6 changed files with 176 additions and 16 deletions

12
src/global.d.ts vendored
View File

@@ -294,10 +294,6 @@ interface AvatarBase64Vo {
base64: string
}
interface SystemSettingsVo {
mail: MailSettingsVo
}
interface MailSettingsVo {
host?: string
port?: number
@@ -381,3 +377,11 @@ interface FileStoreInfoVo {
total: number
free: number
}
interface OnlineInfoVo {
current: number
history: {
time: string
record: string
}[]
}