Files
guofu-admin/src/api/think/thinkMessage/model/index.ts
2024-08-23 22:28:24 +08:00

40 lines
669 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}