feat(projects): 1、站内信、通知功能完善;2、项目列表按会议需求重新开发
This commit is contained in:
24
src/typings/api/notice.d.ts
vendored
Normal file
24
src/typings/api/notice.d.ts
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
declare namespace Api {
|
||||
/**
|
||||
* namespace Notice
|
||||
*
|
||||
* backend api module: "notice"(通知公告)
|
||||
*/
|
||||
namespace Notice {
|
||||
/** 公告(ID 在 API 适配层已统一为 string) */
|
||||
interface Notice {
|
||||
/** 公告编号 */
|
||||
id: string;
|
||||
/** 公告标题 */
|
||||
title: string;
|
||||
/** 公告类型,字典 system_notice_type */
|
||||
type: number;
|
||||
/** 公告内容(富文本 / 纯文本,由录入决定) */
|
||||
content: string;
|
||||
/** 状态:0 开启 / 1 关闭 */
|
||||
status: number;
|
||||
/** 创建时间 */
|
||||
createTime: string | number;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user