refactor: ♻️ 菜单路由优化

This commit is contained in:
Ray.Hao
2025-05-20 23:14:31 +08:00
parent 1914657ce1
commit 1e584e9bc5
6 changed files with 29 additions and 35 deletions

View File

@@ -1,15 +0,0 @@
/**
* WebSocket相关类型定义
*/
/**
* 字典WebSocket事件类型
*/
export interface DictWebSocketEvent {
/** 事件类型:更新或删除 */
type: "DICT_UPDATED" | "DICT_DELETED";
/** 字典编码 */
dictCode: string;
/** 时间戳 */
timestamp: number;
}