stationnotifyModel.ts
1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import { BasicPageParams } from '/@/api/model/baseModel';
export type NoticeQueryParam = BasicPageParams & NoticeParams;
export type NoticeUserParam = BasicPageParams & NoticeUserParams;
export type NoticeParams = {
orderFiled?: string;
id?: string;
};
export type NoticeUserParams = {
noticeId?: string;
};
export type NoticeByIdParams = {
id: string;
};
//保存草稿
export interface NotifyAddDraftModel {
content: string;
createTime: '2021-12-07T03:19:45.394Z';
creator: string;
id: string;
pointId: [];
receiverType: string;
receiverTypeIds: string;
senderDate: string;
senderName: string;
status: string;
title: string;
type: 'MEETING';
updateTime: string;
updater: string;
}
export interface NotifyAddreLeaseModel {
content: string;
createTime: string;
creator: string;
id: string;
pointId: [];
receiverType: string;
receiverTypeIds: string;
senderDate: string;
senderName: string;
status: string;
title: string;
type: 'MEETING';
updateTime: string;
updater: string;
}