feat: 初始化
This commit is contained in:
30
types/home/notice.ts
Normal file
30
types/home/notice.ts
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user