record.ts
1.52 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
export type ApplicationRecordPageParams = {
  apiName?: string;
  applicationName?: string;
  classify?: string;
  startTime?: string;
  endTime?: string;
  state?: string;
  tenantId?: string;
  textSearch?: string;
  orderFiled?: string;
  orderType?: string;
  page: number;
  pageSize: number;
  sortOrder?: string;
  sortProperty?: string;
};
export interface ApplicationRecordItemType {
  apiName: string;
  applicationName: string;
  categoryName: string;
  interfaceResponse: string;
  callTime: string;
  status: number;
  updateTime: string;
  updater: string;
  createdTime: string;
  creator: string;
  id: string;
  state: number;
}
export interface CallStatisticsItemType {
  createTime: string;
  creator: string;
  failureCount: number;
  id: string;
  name: string;
  recordNum: number;
  recordProportion: number;
  successCount: number;
  updateTime: string;
  updater: string;
}
export interface TopItemType {
  createTime: string;
  creator: string;
  failureCount: number;
  id: string;
  name: string;
  recordNum: number;
  recordProportion: number;
  successCount: number;
  updateTime: string;
  updater: string;
}
export interface ApplicationRecordTopItemType {
  count: number;
  createTime: string;
  creator: string;
  failCount: number;
  id: string;
  successCount: number;
  tops: TopItemType[];
  updateTime: string;
  updater: string;
}
export interface ClassifyDtsItemType {
  classify: string;
  count: number;
  time: string;
}
export interface ClassifyItemType {
  classify: string;
  dts: ClassifyDtsItemType[];
}