feat 优化报警消息暂存

This commit is contained in:
Ironsp
2026-06-11 09:28:46 +08:00
parent 7f9d9ed8bd
commit 159d53080a
5 changed files with 45 additions and 15 deletions

View File

@@ -24,3 +24,9 @@ export interface DemoQuery extends PageQuery {
beginTime?: string;
endTime?: string;
}
/** 告警列表响应结构 */
export interface WarningListResult {
rows: DemoVO[];
total: number;
}