审计日志搜索框:防抖检索、回溯进度与补批封顶
CI / test (push) Successful in 27s

This commit is contained in:
2026-07-16 16:36:42 +08:00
parent b8c0ddda6d
commit 6ea222e5ab
3 changed files with 112 additions and 26 deletions
+3 -1
View File
@@ -594,11 +594,13 @@ export interface AuditEvent {
}
// 批式懒加载响应:cursor 供下一批续查原样带回;
// cursor 为空且 exhausted 为 true 表示已回溯到 365 天保留期尽头
// cursor 为空且 exhausted 为 true 表示已回溯到 365 天保留期尽头;
// scannedThrough 为已完整回溯到的时刻(比它更新的时段已扫完),用于进度提示
export interface AuditEventsResult {
items: AuditEvent[]
cursor?: string
exhausted: boolean
scannedThrough?: string
}
// ---- 域通知与密码策略 ----