feat: 初始化

This commit is contained in:
George
2025-07-07 16:05:18 +08:00
commit c169958240
986 changed files with 132574 additions and 0 deletions

30
types/home/notice.ts Normal file
View File

@ -0,0 +1,30 @@
export interface Notice {
/**
* html内容
*/
content: string;
/**
* 主键id
*/
id: string;
/**
* 发送日期
*/
sendDate: string;
/**
* 发送时间
*/
sendTime: string;
/**
* 状态1 已读 0 未读
*/
status: string;
/**
* 标题
*/
subject: string;
/**
* 文本内容
*/
summary: string;
}