@gizone/rrs-client 4.1.2-alpha.176 → 4.1.2-alpha.177
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +1 -0
- package/dist/esm/models/equipment-detail-dto.d.ts +4 -12
- package/dist/esm/models/equipment-detail-dto.js +1 -8
- package/dist/esm/models/equipment-edit-batch-vo.d.ts +3 -11
- package/dist/esm/models/equipment-edit-batch-vo.js +1 -8
- package/dist/esm/models/equipment-edit-vo.d.ts +4 -12
- package/dist/esm/models/equipment-edit-vo.js +1 -8
- package/dist/esm/models/equipment-search-system-dto.d.ts +4 -12
- package/dist/esm/models/equipment-search-system-dto.js +1 -8
- package/dist/esm/models/equipment-search-vo.d.ts +4 -12
- package/dist/esm/models/equipment-search-vo.js +1 -8
- package/dist/esm/models/equipment-status-enum.d.ts +25 -0
- package/dist/esm/models/equipment-status-enum.js +26 -0
- package/dist/esm/models/equipment-tree-details-dto.d.ts +4 -12
- package/dist/esm/models/equipment-tree-details-dto.js +1 -8
- package/dist/esm/models/equipment.d.ts +1 -1
- package/dist/esm/models/get-user-wx200-response.d.ts +10 -10
- package/dist/esm/models/index.d.ts +1 -0
- package/dist/esm/models/index.js +1 -0
- package/dist/esm/models/ipage-access-vo.d.ts +6 -6
- package/dist/models/equipment-detail-dto.d.ts +4 -12
- package/dist/models/equipment-detail-dto.js +0 -9
- package/dist/models/equipment-edit-batch-vo.d.ts +3 -11
- package/dist/models/equipment-edit-batch-vo.js +0 -9
- package/dist/models/equipment-edit-vo.d.ts +4 -12
- package/dist/models/equipment-edit-vo.js +0 -9
- package/dist/models/equipment-search-system-dto.d.ts +4 -12
- package/dist/models/equipment-search-system-dto.js +0 -9
- package/dist/models/equipment-search-vo.d.ts +4 -12
- package/dist/models/equipment-search-vo.js +0 -9
- package/dist/models/equipment-status-enum.d.ts +25 -0
- package/dist/models/equipment-status-enum.js +29 -0
- package/dist/models/equipment-tree-details-dto.d.ts +4 -12
- package/dist/models/equipment-tree-details-dto.js +0 -9
- package/dist/models/equipment.d.ts +1 -1
- package/dist/models/get-user-wx200-response.d.ts +10 -10
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/ipage-access-vo.d.ts +6 -6
- package/models/equipment-detail-dto.ts +6 -13
- package/models/equipment-edit-batch-vo.ts +5 -12
- package/models/equipment-edit-vo.ts +6 -13
- package/models/equipment-search-system-dto.ts +6 -13
- package/models/equipment-search-vo.ts +6 -13
- package/models/equipment-status-enum.ts +35 -0
- package/models/equipment-tree-details-dto.ts +6 -13
- package/models/equipment.ts +1 -1
- package/models/get-user-wx200-response.ts +10 -10
- package/models/index.ts +1 -0
- package/models/ipage-access-vo.ts +6 -6
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -243,6 +243,7 @@ models/equipment-qr-code-vo.ts
|
|
|
243
243
|
models/equipment-search-system-dto.ts
|
|
244
244
|
models/equipment-search-vo.ts
|
|
245
245
|
models/equipment-space-search-vo.ts
|
|
246
|
+
models/equipment-status-enum.ts
|
|
246
247
|
models/equipment-status.ts
|
|
247
248
|
models/equipment-system-add-vo.ts
|
|
248
249
|
models/equipment-system-edit-vo.ts
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EquipmentStatusEnum } from './equipment-status-enum';
|
|
12
13
|
import type { ThirdPartySystemEnum } from './third-party-system-enum';
|
|
13
14
|
/**
|
|
14
15
|
* 设备详情
|
|
@@ -29,11 +30,11 @@ export interface EquipmentDetailDTO {
|
|
|
29
30
|
*/
|
|
30
31
|
'equipmentName'?: string;
|
|
31
32
|
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {
|
|
33
|
+
*
|
|
34
|
+
* @type {EquipmentStatusEnum}
|
|
34
35
|
* @memberof EquipmentDetailDTO
|
|
35
36
|
*/
|
|
36
|
-
'equipmentStatus'?:
|
|
37
|
+
'equipmentStatus'?: EquipmentStatusEnum;
|
|
37
38
|
/**
|
|
38
39
|
* 设备系统
|
|
39
40
|
* @type {string}
|
|
@@ -239,12 +240,3 @@ export interface EquipmentDetailDTO {
|
|
|
239
240
|
*/
|
|
240
241
|
'famEquipmentCode'?: string;
|
|
241
242
|
}
|
|
242
|
-
export declare const EquipmentDetailDTOEquipmentStatusEnum: {
|
|
243
|
-
readonly InUse: "IN_USE";
|
|
244
|
-
readonly ToBeRepaired: "TO_BE_REPAIRED";
|
|
245
|
-
readonly ToBeScrapped: "TO_BE_SCRAPPED";
|
|
246
|
-
readonly Scrapped: "SCRAPPED";
|
|
247
|
-
readonly Disposed: "DISPOSED";
|
|
248
|
-
readonly Frozen: "FROZEN";
|
|
249
|
-
};
|
|
250
|
-
export type EquipmentDetailDTOEquipmentStatusEnum = typeof EquipmentDetailDTOEquipmentStatusEnum[keyof typeof EquipmentDetailDTOEquipmentStatusEnum];
|
|
@@ -11,11 +11,4 @@
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
-
export
|
|
15
|
-
InUse: 'IN_USE',
|
|
16
|
-
ToBeRepaired: 'TO_BE_REPAIRED',
|
|
17
|
-
ToBeScrapped: 'TO_BE_SCRAPPED',
|
|
18
|
-
Scrapped: 'SCRAPPED',
|
|
19
|
-
Disposed: 'DISPOSED',
|
|
20
|
-
Frozen: 'FROZEN'
|
|
21
|
-
};
|
|
14
|
+
export {};
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EquipmentStatusEnum } from './equipment-status-enum';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -23,10 +24,10 @@ export interface EquipmentEditBatchVo {
|
|
|
23
24
|
'id'?: number;
|
|
24
25
|
/**
|
|
25
26
|
*
|
|
26
|
-
* @type {
|
|
27
|
+
* @type {EquipmentStatusEnum}
|
|
27
28
|
* @memberof EquipmentEditBatchVo
|
|
28
29
|
*/
|
|
29
|
-
'equipmentStatus'?:
|
|
30
|
+
'equipmentStatus'?: EquipmentStatusEnum;
|
|
30
31
|
/**
|
|
31
32
|
*
|
|
32
33
|
* @type {Array<number>}
|
|
@@ -34,12 +35,3 @@ export interface EquipmentEditBatchVo {
|
|
|
34
35
|
*/
|
|
35
36
|
'superiorId'?: Array<number>;
|
|
36
37
|
}
|
|
37
|
-
export declare const EquipmentEditBatchVoEquipmentStatusEnum: {
|
|
38
|
-
readonly InUse: "IN_USE";
|
|
39
|
-
readonly ToBeRepaired: "TO_BE_REPAIRED";
|
|
40
|
-
readonly ToBeScrapped: "TO_BE_SCRAPPED";
|
|
41
|
-
readonly Scrapped: "SCRAPPED";
|
|
42
|
-
readonly Disposed: "DISPOSED";
|
|
43
|
-
readonly Frozen: "FROZEN";
|
|
44
|
-
};
|
|
45
|
-
export type EquipmentEditBatchVoEquipmentStatusEnum = typeof EquipmentEditBatchVoEquipmentStatusEnum[keyof typeof EquipmentEditBatchVoEquipmentStatusEnum];
|
|
@@ -11,11 +11,4 @@
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
-
export
|
|
15
|
-
InUse: 'IN_USE',
|
|
16
|
-
ToBeRepaired: 'TO_BE_REPAIRED',
|
|
17
|
-
ToBeScrapped: 'TO_BE_SCRAPPED',
|
|
18
|
-
Scrapped: 'SCRAPPED',
|
|
19
|
-
Disposed: 'DISPOSED',
|
|
20
|
-
Frozen: 'FROZEN'
|
|
21
|
-
};
|
|
14
|
+
export {};
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EquipmentStatusEnum } from './equipment-status-enum';
|
|
12
13
|
import type { ThirdPartySystemEnum } from './third-party-system-enum';
|
|
13
14
|
/**
|
|
14
15
|
* 设备编辑参数
|
|
@@ -53,11 +54,11 @@ export interface EquipmentEditVo {
|
|
|
53
54
|
*/
|
|
54
55
|
'maintenanceCompany'?: string;
|
|
55
56
|
/**
|
|
56
|
-
*
|
|
57
|
-
* @type {
|
|
57
|
+
*
|
|
58
|
+
* @type {EquipmentStatusEnum}
|
|
58
59
|
* @memberof EquipmentEditVo
|
|
59
60
|
*/
|
|
60
|
-
'equipmentStatus'?:
|
|
61
|
+
'equipmentStatus'?: EquipmentStatusEnum;
|
|
61
62
|
/**
|
|
62
63
|
* 技术联系人
|
|
63
64
|
* @type {string}
|
|
@@ -167,12 +168,3 @@ export interface EquipmentEditVo {
|
|
|
167
168
|
*/
|
|
168
169
|
'equipmentCode'?: string;
|
|
169
170
|
}
|
|
170
|
-
export declare const EquipmentEditVoEquipmentStatusEnum: {
|
|
171
|
-
readonly InUse: "IN_USE";
|
|
172
|
-
readonly ToBeRepaired: "TO_BE_REPAIRED";
|
|
173
|
-
readonly ToBeScrapped: "TO_BE_SCRAPPED";
|
|
174
|
-
readonly Scrapped: "SCRAPPED";
|
|
175
|
-
readonly Disposed: "DISPOSED";
|
|
176
|
-
readonly Frozen: "FROZEN";
|
|
177
|
-
};
|
|
178
|
-
export type EquipmentEditVoEquipmentStatusEnum = typeof EquipmentEditVoEquipmentStatusEnum[keyof typeof EquipmentEditVoEquipmentStatusEnum];
|
|
@@ -11,11 +11,4 @@
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
-
export
|
|
15
|
-
InUse: 'IN_USE',
|
|
16
|
-
ToBeRepaired: 'TO_BE_REPAIRED',
|
|
17
|
-
ToBeScrapped: 'TO_BE_SCRAPPED',
|
|
18
|
-
Scrapped: 'SCRAPPED',
|
|
19
|
-
Disposed: 'DISPOSED',
|
|
20
|
-
Frozen: 'FROZEN'
|
|
21
|
-
};
|
|
14
|
+
export {};
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EquipmentStatusEnum } from './equipment-status-enum';
|
|
12
13
|
import type { MaintenanceHistoryDto } from './maintenance-history-dto';
|
|
13
14
|
import type { ThirdPartySystemEnum } from './third-party-system-enum';
|
|
14
15
|
/**
|
|
@@ -30,11 +31,11 @@ export interface EquipmentSearchSystemDTO {
|
|
|
30
31
|
*/
|
|
31
32
|
'equipmentName'?: string;
|
|
32
33
|
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {
|
|
34
|
+
*
|
|
35
|
+
* @type {EquipmentStatusEnum}
|
|
35
36
|
* @memberof EquipmentSearchSystemDTO
|
|
36
37
|
*/
|
|
37
|
-
'equipmentStatus'?:
|
|
38
|
+
'equipmentStatus'?: EquipmentStatusEnum;
|
|
38
39
|
/**
|
|
39
40
|
* 设备系统
|
|
40
41
|
* @type {string}
|
|
@@ -252,12 +253,3 @@ export interface EquipmentSearchSystemDTO {
|
|
|
252
253
|
*/
|
|
253
254
|
'famEquipmentCode'?: string;
|
|
254
255
|
}
|
|
255
|
-
export declare const EquipmentSearchSystemDTOEquipmentStatusEnum: {
|
|
256
|
-
readonly InUse: "IN_USE";
|
|
257
|
-
readonly ToBeRepaired: "TO_BE_REPAIRED";
|
|
258
|
-
readonly ToBeScrapped: "TO_BE_SCRAPPED";
|
|
259
|
-
readonly Scrapped: "SCRAPPED";
|
|
260
|
-
readonly Disposed: "DISPOSED";
|
|
261
|
-
readonly Frozen: "FROZEN";
|
|
262
|
-
};
|
|
263
|
-
export type EquipmentSearchSystemDTOEquipmentStatusEnum = typeof EquipmentSearchSystemDTOEquipmentStatusEnum[keyof typeof EquipmentSearchSystemDTOEquipmentStatusEnum];
|
|
@@ -11,11 +11,4 @@
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
-
export
|
|
15
|
-
InUse: 'IN_USE',
|
|
16
|
-
ToBeRepaired: 'TO_BE_REPAIRED',
|
|
17
|
-
ToBeScrapped: 'TO_BE_SCRAPPED',
|
|
18
|
-
Scrapped: 'SCRAPPED',
|
|
19
|
-
Disposed: 'DISPOSED',
|
|
20
|
-
Frozen: 'FROZEN'
|
|
21
|
-
};
|
|
14
|
+
export {};
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EquipmentStatusEnum } from './equipment-status-enum';
|
|
12
13
|
/**
|
|
13
14
|
* 设备搜索
|
|
14
15
|
* @export
|
|
@@ -90,11 +91,11 @@ export interface EquipmentSearchVo {
|
|
|
90
91
|
*/
|
|
91
92
|
'equipmentLocation'?: string;
|
|
92
93
|
/**
|
|
93
|
-
*
|
|
94
|
-
* @type {
|
|
94
|
+
*
|
|
95
|
+
* @type {EquipmentStatusEnum}
|
|
95
96
|
* @memberof EquipmentSearchVo
|
|
96
97
|
*/
|
|
97
|
-
'equipmentStatus'?:
|
|
98
|
+
'equipmentStatus'?: EquipmentStatusEnum;
|
|
98
99
|
/**
|
|
99
100
|
* 园区id
|
|
100
101
|
* @type {number}
|
|
@@ -126,12 +127,3 @@ export interface EquipmentSearchVo {
|
|
|
126
127
|
*/
|
|
127
128
|
'equipmentIds'?: Array<number>;
|
|
128
129
|
}
|
|
129
|
-
export declare const EquipmentSearchVoEquipmentStatusEnum: {
|
|
130
|
-
readonly InUse: "IN_USE";
|
|
131
|
-
readonly ToBeRepaired: "TO_BE_REPAIRED";
|
|
132
|
-
readonly ToBeScrapped: "TO_BE_SCRAPPED";
|
|
133
|
-
readonly Scrapped: "SCRAPPED";
|
|
134
|
-
readonly Disposed: "DISPOSED";
|
|
135
|
-
readonly Frozen: "FROZEN";
|
|
136
|
-
};
|
|
137
|
-
export type EquipmentSearchVoEquipmentStatusEnum = typeof EquipmentSearchVoEquipmentStatusEnum[keyof typeof EquipmentSearchVoEquipmentStatusEnum];
|
|
@@ -11,11 +11,4 @@
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
-
export
|
|
15
|
-
InUse: 'IN_USE',
|
|
16
|
-
ToBeRepaired: 'TO_BE_REPAIRED',
|
|
17
|
-
ToBeScrapped: 'TO_BE_SCRAPPED',
|
|
18
|
-
Scrapped: 'SCRAPPED',
|
|
19
|
-
Disposed: 'DISPOSED',
|
|
20
|
-
Frozen: 'FROZEN'
|
|
21
|
-
};
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenAPI definition
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* 设备状态
|
|
14
|
+
* @export
|
|
15
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare const EquipmentStatusEnum: {
|
|
18
|
+
readonly InUse: "IN_USE";
|
|
19
|
+
readonly ToBeRepaired: "TO_BE_REPAIRED";
|
|
20
|
+
readonly ToBeScrapped: "TO_BE_SCRAPPED";
|
|
21
|
+
readonly Scrapped: "SCRAPPED";
|
|
22
|
+
readonly Disposed: "DISPOSED";
|
|
23
|
+
readonly Frozen: "FROZEN";
|
|
24
|
+
};
|
|
25
|
+
export type EquipmentStatusEnum = typeof EquipmentStatusEnum[keyof typeof EquipmentStatusEnum];
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* 设备状态
|
|
16
|
+
* @export
|
|
17
|
+
* @enum {string}
|
|
18
|
+
*/
|
|
19
|
+
export const EquipmentStatusEnum = {
|
|
20
|
+
InUse: 'IN_USE',
|
|
21
|
+
ToBeRepaired: 'TO_BE_REPAIRED',
|
|
22
|
+
ToBeScrapped: 'TO_BE_SCRAPPED',
|
|
23
|
+
Scrapped: 'SCRAPPED',
|
|
24
|
+
Disposed: 'DISPOSED',
|
|
25
|
+
Frozen: 'FROZEN'
|
|
26
|
+
};
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EquipmentStatusEnum } from './equipment-status-enum';
|
|
12
13
|
import type { ThirdPartySystemEnum } from './third-party-system-enum';
|
|
13
14
|
/**
|
|
14
15
|
* 设备tree详情
|
|
@@ -29,11 +30,11 @@ export interface EquipmentTreeDetailsDTO {
|
|
|
29
30
|
*/
|
|
30
31
|
'equipmentName'?: string;
|
|
31
32
|
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {
|
|
33
|
+
*
|
|
34
|
+
* @type {EquipmentStatusEnum}
|
|
34
35
|
* @memberof EquipmentTreeDetailsDTO
|
|
35
36
|
*/
|
|
36
|
-
'equipmentStatus'?:
|
|
37
|
+
'equipmentStatus'?: EquipmentStatusEnum;
|
|
37
38
|
/**
|
|
38
39
|
* 空间id
|
|
39
40
|
* @type {number}
|
|
@@ -71,12 +72,3 @@ export interface EquipmentTreeDetailsDTO {
|
|
|
71
72
|
*/
|
|
72
73
|
'famEquipmentCode'?: string;
|
|
73
74
|
}
|
|
74
|
-
export declare const EquipmentTreeDetailsDTOEquipmentStatusEnum: {
|
|
75
|
-
readonly InUse: "IN_USE";
|
|
76
|
-
readonly ToBeRepaired: "TO_BE_REPAIRED";
|
|
77
|
-
readonly ToBeScrapped: "TO_BE_SCRAPPED";
|
|
78
|
-
readonly Scrapped: "SCRAPPED";
|
|
79
|
-
readonly Disposed: "DISPOSED";
|
|
80
|
-
readonly Frozen: "FROZEN";
|
|
81
|
-
};
|
|
82
|
-
export type EquipmentTreeDetailsDTOEquipmentStatusEnum = typeof EquipmentTreeDetailsDTOEquipmentStatusEnum[keyof typeof EquipmentTreeDetailsDTOEquipmentStatusEnum];
|
|
@@ -11,11 +11,4 @@
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
-
export
|
|
15
|
-
InUse: 'IN_USE',
|
|
16
|
-
ToBeRepaired: 'TO_BE_REPAIRED',
|
|
17
|
-
ToBeScrapped: 'TO_BE_SCRAPPED',
|
|
18
|
-
Scrapped: 'SCRAPPED',
|
|
19
|
-
Disposed: 'DISPOSED',
|
|
20
|
-
Frozen: 'FROZEN'
|
|
21
|
-
};
|
|
14
|
+
export {};
|
|
@@ -17,12 +17,6 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
17
17
|
* @interface GetUserWx200Response
|
|
18
18
|
*/
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {Array<string>}
|
|
23
|
-
* @memberof GetUserWx200Response
|
|
24
|
-
*/
|
|
25
|
-
'headerNames'?: Array<string>;
|
|
26
20
|
/**
|
|
27
21
|
*
|
|
28
22
|
* @type {number}
|
|
@@ -31,16 +25,16 @@ export interface GetUserWx200Response {
|
|
|
31
25
|
'status'?: number;
|
|
32
26
|
/**
|
|
33
27
|
*
|
|
34
|
-
* @type {
|
|
28
|
+
* @type {Array<string>}
|
|
35
29
|
* @memberof GetUserWx200Response
|
|
36
30
|
*/
|
|
37
|
-
'
|
|
31
|
+
'headerNames'?: Array<string>;
|
|
38
32
|
/**
|
|
39
33
|
*
|
|
40
|
-
* @type {
|
|
34
|
+
* @type {object}
|
|
41
35
|
* @memberof GetUserWx200Response
|
|
42
36
|
*/
|
|
43
|
-
'
|
|
37
|
+
'trailerFields'?: object;
|
|
44
38
|
/**
|
|
45
39
|
*
|
|
46
40
|
* @type {string}
|
|
@@ -59,6 +53,12 @@ export interface GetUserWx200Response {
|
|
|
59
53
|
* @memberof GetUserWx200Response
|
|
60
54
|
*/
|
|
61
55
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {GetUserWx200ResponseLocale}
|
|
59
|
+
* @memberof GetUserWx200Response
|
|
60
|
+
*/
|
|
61
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
62
62
|
/**
|
|
63
63
|
*
|
|
64
64
|
* @type {number}
|
|
@@ -181,6 +181,7 @@ export * from './equipment-search-system-dto';
|
|
|
181
181
|
export * from './equipment-search-vo';
|
|
182
182
|
export * from './equipment-space-search-vo';
|
|
183
183
|
export * from './equipment-status';
|
|
184
|
+
export * from './equipment-status-enum';
|
|
184
185
|
export * from './equipment-system-add-vo';
|
|
185
186
|
export * from './equipment-system-edit-vo';
|
|
186
187
|
export * from './equipment-system-entity';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -181,6 +181,7 @@ export * from './equipment-search-system-dto';
|
|
|
181
181
|
export * from './equipment-search-vo';
|
|
182
182
|
export * from './equipment-space-search-vo';
|
|
183
183
|
export * from './equipment-status';
|
|
184
|
+
export * from './equipment-status-enum';
|
|
184
185
|
export * from './equipment-system-add-vo';
|
|
185
186
|
export * from './equipment-system-edit-vo';
|
|
186
187
|
export * from './equipment-system-entity';
|
|
@@ -36,23 +36,23 @@ export interface IPageAccessVO {
|
|
|
36
36
|
'records'?: Array<AccessVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {boolean}
|
|
40
40
|
* @memberof IPageAccessVO
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'searchCount'?: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
|
-
* @type {
|
|
45
|
+
* @type {number}
|
|
46
46
|
* @memberof IPageAccessVO
|
|
47
|
-
* @deprecated
|
|
48
47
|
*/
|
|
49
|
-
'
|
|
48
|
+
'pages'?: number;
|
|
50
49
|
/**
|
|
51
50
|
*
|
|
52
51
|
* @type {boolean}
|
|
53
52
|
* @memberof IPageAccessVO
|
|
53
|
+
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'hitCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EquipmentStatusEnum } from './equipment-status-enum';
|
|
12
13
|
import type { ThirdPartySystemEnum } from './third-party-system-enum';
|
|
13
14
|
/**
|
|
14
15
|
* 设备详情
|
|
@@ -29,11 +30,11 @@ export interface EquipmentDetailDTO {
|
|
|
29
30
|
*/
|
|
30
31
|
'equipmentName'?: string;
|
|
31
32
|
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {
|
|
33
|
+
*
|
|
34
|
+
* @type {EquipmentStatusEnum}
|
|
34
35
|
* @memberof EquipmentDetailDTO
|
|
35
36
|
*/
|
|
36
|
-
'equipmentStatus'?:
|
|
37
|
+
'equipmentStatus'?: EquipmentStatusEnum;
|
|
37
38
|
/**
|
|
38
39
|
* 设备系统
|
|
39
40
|
* @type {string}
|
|
@@ -239,12 +240,3 @@ export interface EquipmentDetailDTO {
|
|
|
239
240
|
*/
|
|
240
241
|
'famEquipmentCode'?: string;
|
|
241
242
|
}
|
|
242
|
-
export declare const EquipmentDetailDTOEquipmentStatusEnum: {
|
|
243
|
-
readonly InUse: "IN_USE";
|
|
244
|
-
readonly ToBeRepaired: "TO_BE_REPAIRED";
|
|
245
|
-
readonly ToBeScrapped: "TO_BE_SCRAPPED";
|
|
246
|
-
readonly Scrapped: "SCRAPPED";
|
|
247
|
-
readonly Disposed: "DISPOSED";
|
|
248
|
-
readonly Frozen: "FROZEN";
|
|
249
|
-
};
|
|
250
|
-
export type EquipmentDetailDTOEquipmentStatusEnum = typeof EquipmentDetailDTOEquipmentStatusEnum[keyof typeof EquipmentDetailDTOEquipmentStatusEnum];
|
|
@@ -13,12 +13,3 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.EquipmentDetailDTOEquipmentStatusEnum = void 0;
|
|
17
|
-
exports.EquipmentDetailDTOEquipmentStatusEnum = {
|
|
18
|
-
InUse: 'IN_USE',
|
|
19
|
-
ToBeRepaired: 'TO_BE_REPAIRED',
|
|
20
|
-
ToBeScrapped: 'TO_BE_SCRAPPED',
|
|
21
|
-
Scrapped: 'SCRAPPED',
|
|
22
|
-
Disposed: 'DISPOSED',
|
|
23
|
-
Frozen: 'FROZEN'
|
|
24
|
-
};
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EquipmentStatusEnum } from './equipment-status-enum';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -23,10 +24,10 @@ export interface EquipmentEditBatchVo {
|
|
|
23
24
|
'id'?: number;
|
|
24
25
|
/**
|
|
25
26
|
*
|
|
26
|
-
* @type {
|
|
27
|
+
* @type {EquipmentStatusEnum}
|
|
27
28
|
* @memberof EquipmentEditBatchVo
|
|
28
29
|
*/
|
|
29
|
-
'equipmentStatus'?:
|
|
30
|
+
'equipmentStatus'?: EquipmentStatusEnum;
|
|
30
31
|
/**
|
|
31
32
|
*
|
|
32
33
|
* @type {Array<number>}
|
|
@@ -34,12 +35,3 @@ export interface EquipmentEditBatchVo {
|
|
|
34
35
|
*/
|
|
35
36
|
'superiorId'?: Array<number>;
|
|
36
37
|
}
|
|
37
|
-
export declare const EquipmentEditBatchVoEquipmentStatusEnum: {
|
|
38
|
-
readonly InUse: "IN_USE";
|
|
39
|
-
readonly ToBeRepaired: "TO_BE_REPAIRED";
|
|
40
|
-
readonly ToBeScrapped: "TO_BE_SCRAPPED";
|
|
41
|
-
readonly Scrapped: "SCRAPPED";
|
|
42
|
-
readonly Disposed: "DISPOSED";
|
|
43
|
-
readonly Frozen: "FROZEN";
|
|
44
|
-
};
|
|
45
|
-
export type EquipmentEditBatchVoEquipmentStatusEnum = typeof EquipmentEditBatchVoEquipmentStatusEnum[keyof typeof EquipmentEditBatchVoEquipmentStatusEnum];
|
|
@@ -13,12 +13,3 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.EquipmentEditBatchVoEquipmentStatusEnum = void 0;
|
|
17
|
-
exports.EquipmentEditBatchVoEquipmentStatusEnum = {
|
|
18
|
-
InUse: 'IN_USE',
|
|
19
|
-
ToBeRepaired: 'TO_BE_REPAIRED',
|
|
20
|
-
ToBeScrapped: 'TO_BE_SCRAPPED',
|
|
21
|
-
Scrapped: 'SCRAPPED',
|
|
22
|
-
Disposed: 'DISPOSED',
|
|
23
|
-
Frozen: 'FROZEN'
|
|
24
|
-
};
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EquipmentStatusEnum } from './equipment-status-enum';
|
|
12
13
|
import type { ThirdPartySystemEnum } from './third-party-system-enum';
|
|
13
14
|
/**
|
|
14
15
|
* 设备编辑参数
|
|
@@ -53,11 +54,11 @@ export interface EquipmentEditVo {
|
|
|
53
54
|
*/
|
|
54
55
|
'maintenanceCompany'?: string;
|
|
55
56
|
/**
|
|
56
|
-
*
|
|
57
|
-
* @type {
|
|
57
|
+
*
|
|
58
|
+
* @type {EquipmentStatusEnum}
|
|
58
59
|
* @memberof EquipmentEditVo
|
|
59
60
|
*/
|
|
60
|
-
'equipmentStatus'?:
|
|
61
|
+
'equipmentStatus'?: EquipmentStatusEnum;
|
|
61
62
|
/**
|
|
62
63
|
* 技术联系人
|
|
63
64
|
* @type {string}
|
|
@@ -167,12 +168,3 @@ export interface EquipmentEditVo {
|
|
|
167
168
|
*/
|
|
168
169
|
'equipmentCode'?: string;
|
|
169
170
|
}
|
|
170
|
-
export declare const EquipmentEditVoEquipmentStatusEnum: {
|
|
171
|
-
readonly InUse: "IN_USE";
|
|
172
|
-
readonly ToBeRepaired: "TO_BE_REPAIRED";
|
|
173
|
-
readonly ToBeScrapped: "TO_BE_SCRAPPED";
|
|
174
|
-
readonly Scrapped: "SCRAPPED";
|
|
175
|
-
readonly Disposed: "DISPOSED";
|
|
176
|
-
readonly Frozen: "FROZEN";
|
|
177
|
-
};
|
|
178
|
-
export type EquipmentEditVoEquipmentStatusEnum = typeof EquipmentEditVoEquipmentStatusEnum[keyof typeof EquipmentEditVoEquipmentStatusEnum];
|
|
@@ -13,12 +13,3 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.EquipmentEditVoEquipmentStatusEnum = void 0;
|
|
17
|
-
exports.EquipmentEditVoEquipmentStatusEnum = {
|
|
18
|
-
InUse: 'IN_USE',
|
|
19
|
-
ToBeRepaired: 'TO_BE_REPAIRED',
|
|
20
|
-
ToBeScrapped: 'TO_BE_SCRAPPED',
|
|
21
|
-
Scrapped: 'SCRAPPED',
|
|
22
|
-
Disposed: 'DISPOSED',
|
|
23
|
-
Frozen: 'FROZEN'
|
|
24
|
-
};
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EquipmentStatusEnum } from './equipment-status-enum';
|
|
12
13
|
import type { MaintenanceHistoryDto } from './maintenance-history-dto';
|
|
13
14
|
import type { ThirdPartySystemEnum } from './third-party-system-enum';
|
|
14
15
|
/**
|
|
@@ -30,11 +31,11 @@ export interface EquipmentSearchSystemDTO {
|
|
|
30
31
|
*/
|
|
31
32
|
'equipmentName'?: string;
|
|
32
33
|
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {
|
|
34
|
+
*
|
|
35
|
+
* @type {EquipmentStatusEnum}
|
|
35
36
|
* @memberof EquipmentSearchSystemDTO
|
|
36
37
|
*/
|
|
37
|
-
'equipmentStatus'?:
|
|
38
|
+
'equipmentStatus'?: EquipmentStatusEnum;
|
|
38
39
|
/**
|
|
39
40
|
* 设备系统
|
|
40
41
|
* @type {string}
|
|
@@ -252,12 +253,3 @@ export interface EquipmentSearchSystemDTO {
|
|
|
252
253
|
*/
|
|
253
254
|
'famEquipmentCode'?: string;
|
|
254
255
|
}
|
|
255
|
-
export declare const EquipmentSearchSystemDTOEquipmentStatusEnum: {
|
|
256
|
-
readonly InUse: "IN_USE";
|
|
257
|
-
readonly ToBeRepaired: "TO_BE_REPAIRED";
|
|
258
|
-
readonly ToBeScrapped: "TO_BE_SCRAPPED";
|
|
259
|
-
readonly Scrapped: "SCRAPPED";
|
|
260
|
-
readonly Disposed: "DISPOSED";
|
|
261
|
-
readonly Frozen: "FROZEN";
|
|
262
|
-
};
|
|
263
|
-
export type EquipmentSearchSystemDTOEquipmentStatusEnum = typeof EquipmentSearchSystemDTOEquipmentStatusEnum[keyof typeof EquipmentSearchSystemDTOEquipmentStatusEnum];
|
|
@@ -13,12 +13,3 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.EquipmentSearchSystemDTOEquipmentStatusEnum = void 0;
|
|
17
|
-
exports.EquipmentSearchSystemDTOEquipmentStatusEnum = {
|
|
18
|
-
InUse: 'IN_USE',
|
|
19
|
-
ToBeRepaired: 'TO_BE_REPAIRED',
|
|
20
|
-
ToBeScrapped: 'TO_BE_SCRAPPED',
|
|
21
|
-
Scrapped: 'SCRAPPED',
|
|
22
|
-
Disposed: 'DISPOSED',
|
|
23
|
-
Frozen: 'FROZEN'
|
|
24
|
-
};
|