初始化

This commit is contained in:
2025-01-27 23:24:42 +08:00
parent c8a96306c4
commit 6ae8339299
421 changed files with 35687 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
import type { PageParam } from '@/api';
/**
* 消息
*/
export interface Notice {
// 消息id
noticeRecordId?: number;
noticeId?: number;
title?: string;
channel?: string;
avatar?: string;
content?: string;
files?: string;
developerId?: number;
userId?: number;
sortNumber?: number;
comments?: string;
status?: number;
}
/**
* 消息搜索条件
*/
export interface NoticeParam extends PageParam {
type?: string;
noticeRecordId?: number;
noticeId?: number;
userId?: number;
developerId?: number;
status?: number;
}
// 查询未读数量
export interface NnReadNum {
notice?: string;
letter?: number;
todo?: number;
chatGPT?: number;
}