bigscreenCenterModel.ts
1.38 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import { BasicPageParams } from '/@/api/model/baseModel';
import { ViewType } from '/@/views/visual/board/config/panelDetail';
export interface BigScreenCenterItemsModel {
id: string;
thumbnail?: string;
name: string;
createTime: string;
creator: string;
remark: string;
state: number;
publicId: string;
organizationId?: string;
viewType?: ViewType;
organizationDTO: { name: string };
}
export type queryPageParams = BasicPageParams & {
name?: Nullable<string>;
organizationId?: Nullable<number>;
};
export interface ConfigurationModal {
items: BigScreenCenterItemsModel[];
total: number;
}
export interface BigScreenCenterParams {
name: string;
createTime: string;
creator: string;
remark: string;
defaultContent?: string;
}
export type ConfigurationCenterInfo = BigScreenCenterParams;
/**
* 大屏公共接口
*/
export interface BigScreenInterfaceParams {
createTime: string;
creator: string;
defaultConfig: string;
description: string;
enabled: boolean;
icon: string;
id: string;
interfaceName: string;
name: string;
remark: string;
requestContentType: 0;
requestHttpType: string;
requestOriginUrl: string;
requestParams: string;
requestUrl: string;
roleIds: [string];
state: number;
tenantExpireTime: string;
tenantId: string;
tenantProfileId: string;
tenantStatus: string;
updateTime: string;
updater: string;
}