index.ts
2.28 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import { OTAPackageType } from '/@/enums/otaEnum';
import { ALG, CheckSumWay } from '/@/views/operation/ota/config/packageDetail.config';
import { OrderByEnum } from '/@/views/rule/designer/enum/form';
export interface GetOtaPackagesParams {
pageSize: number;
page: number;
textSearch?: string;
title?: string;
sortOrder?: string;
sortProperty?: string;
}
export interface CreateOtaPackagesParams {
additionalInfo?: { description?: string };
checksum?: Nullable<number>;
checksumAlgorithm?: ALG;
deviceProfileId?: {
entityType?: string;
id?: string;
};
isURL: boolean;
tag?: string;
title?: string;
type?: CheckSumWay;
url?: string;
version?: string;
}
export interface UploadOtaPackagesParams {
otaPackageId?: string;
checksum?: string;
checksumAlgorithm?: ALG;
file?: FormData;
}
export interface Id {
entityType: string;
id: string;
}
export interface AdditionalInfo {
description: string;
}
export interface IdRecord {
entityType: string;
id: string;
}
export interface OtaRecordDatum {
id: Id;
createdTime: any;
additionalInfo: AdditionalInfo;
tenantId: IdRecord;
deviceProfileId: IdRecord;
type: string;
title: string;
version: string;
tag: string;
url: string;
hasData: boolean;
fileName: string;
contentType: string;
checksumAlgorithm: string;
checksum: string;
dataSize?: number;
}
export interface TBResponse<T> {
data: T[];
totalPages: number;
totalElements: number;
hasNext: boolean;
}
export interface DefaultDeviceProfileInfo {
id: {
entityType: string;
id: string;
};
}
export interface CreateOtaPackageParams {
title: string;
version: string;
tag: string;
type: string;
deviceProfileId: IdRecord;
isURL: boolean;
additionalInfo: AdditionalInfo;
}
export interface GetDeviceProfileInfosParams {
pageSize?: number;
page?: number;
textSearch?: string;
sortProperty?: string;
sortOrder?: 'ASC' | 'DESC';
}
export interface DeviceProfileRecord {
id: Id;
name: string;
image: string;
defaultDashboardId?: any;
type: string;
transportType: string;
}
export interface QueryDeviceProfileOtaPackagesType {
deviceProfileId: string;
type: OTAPackageType;
page: number;
pageSize: number;
textSearch?: string;
sortProperty?: string;
sortOrder?: OrderByEnum;
}