优化网站导航模块

This commit is contained in:
2024-08-23 22:28:24 +08:00
parent 1d81fa9270
commit 13832d9de0
964 changed files with 90774 additions and 31362 deletions

View File

@@ -0,0 +1,39 @@
import type { PageParam } from '@/api';
/**
* 消息表
*/
export interface ThinkMessage {
//
id?: number;
// 消息类型
t?: string;
// 消息标题
title?: string;
// 消息内容
content?: string;
// 发送者1系统
from?: number;
// 接收者
to?: number;
// 是否已读1是 0否
isRead?: number;
// 关联表名
tableName?: string;
// 关联表id
tableId?: number;
// 读取时间
readTime?: string;
// 创建时间
createTime?: number;
// 更新时间
updateTime?: number;
}
/**
* 消息表搜索条件
*/
export interface ThinkMessageParam extends PageParam {
id?: number;
keywords?: string;
}