Add active information management to statistic

This commit is contained in:
2023-12-19 16:51:04 +08:00
parent 9b1beed8b5
commit 46ec332298
6 changed files with 202 additions and 7 deletions

15
src/global.d.ts vendored
View File

@@ -389,3 +389,18 @@ interface OnlineInfoVo {
interface OnlineInfoGetParam {
scope: string
}
interface ActiveInfoVo {
registerHistory: {
time: string
count: number
}[]
loginHistory: {
time: string
count: number
}[]
}
interface ActiveInfoGetParam {
scope: string
}