@gizone/rrs-client 4.1.0-alpha.133 → 4.1.0-alpha.134
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/apis/work-order-api.ts +264 -0
- package/dist/apis/work-order-api.d.ts +162 -0
- package/dist/apis/work-order-api.js +148 -1
- package/dist/esm/apis/work-order-api.d.ts +162 -0
- package/dist/esm/apis/work-order-api.js +147 -0
- package/dist/esm/models/equipment-work-order-statistics.d.ts +30 -0
- package/dist/esm/models/equipment-work-order-statistics.js +14 -0
- package/dist/esm/models/get-user-wx200-response.d.ts +6 -6
- 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 +4 -4
- package/dist/esm/models/surveillance-details-dto.d.ts +7 -0
- package/dist/esm/models/work-order-search-dto.d.ts +9 -2
- package/dist/models/equipment-work-order-statistics.d.ts +30 -0
- package/dist/models/equipment-work-order-statistics.js +15 -0
- package/dist/models/get-user-wx200-response.d.ts +6 -6
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/ipage-access-vo.d.ts +4 -4
- package/dist/models/surveillance-details-dto.d.ts +7 -0
- package/dist/models/work-order-search-dto.d.ts +9 -2
- package/models/equipment-work-order-statistics.ts +36 -0
- package/models/get-user-wx200-response.ts +6 -6
- package/models/index.ts +1 -0
- package/models/ipage-access-vo.ts +4 -4
- package/models/surveillance-details-dto.ts +9 -0
- package/models/work-order-search-dto.ts +11 -2
- package/package.json +1 -1
|
@@ -24,16 +24,16 @@ export interface IPageAccessVO {
|
|
|
24
24
|
'total'?: number;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
|
-
* @type {
|
|
27
|
+
* @type {Array<AccessVO>}
|
|
28
28
|
* @memberof IPageAccessVO
|
|
29
29
|
*/
|
|
30
|
-
'
|
|
30
|
+
'records'?: Array<AccessVO>;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {number}
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
35
|
*/
|
|
36
|
-
'
|
|
36
|
+
'current'?: number;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {boolean}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EquipmentWorkOrderStatistics } from './equipment-work-order-statistics';
|
|
12
13
|
import type { FunctionalAreaEnum } from './functional-area-enum';
|
|
13
14
|
import type { HikGetCamerasInfoVO } from './hik-get-cameras-info-vo';
|
|
14
15
|
import type { InstallationBodyEnum } from './installation-body-enum';
|
|
@@ -128,4 +129,10 @@ export interface SurveillanceDetailsDto {
|
|
|
128
129
|
* @memberof SurveillanceDetailsDto
|
|
129
130
|
*/
|
|
130
131
|
'hikGetCamerasInfo'?: HikGetCamerasInfoVO;
|
|
132
|
+
/**
|
|
133
|
+
*
|
|
134
|
+
* @type {EquipmentWorkOrderStatistics}
|
|
135
|
+
* @memberof SurveillanceDetailsDto
|
|
136
|
+
*/
|
|
137
|
+
'maintenanceStatistics'?: EquipmentWorkOrderStatistics;
|
|
131
138
|
}
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import type { WorkOrderDeptDTO } from './work-order-dept-dto';
|
|
13
13
|
import type { WorkOrderExtData } from './work-order-ext-data';
|
|
14
14
|
import type { WorkOrderHandlerDto } from './work-order-handler-dto';
|
|
15
|
+
import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
|
|
15
16
|
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
16
17
|
/**
|
|
17
18
|
* 工单查询DTO
|
|
@@ -111,16 +112,22 @@ export interface WorkOrderSearchDTO {
|
|
|
111
112
|
'inspectionException'?: boolean;
|
|
112
113
|
/**
|
|
113
114
|
*
|
|
114
|
-
* @type {
|
|
115
|
+
* @type {WorkOrderIssueTypeEnum}
|
|
115
116
|
* @memberof WorkOrderSearchDTO
|
|
116
117
|
*/
|
|
117
|
-
'
|
|
118
|
+
'workOrderIssueType'?: WorkOrderIssueTypeEnum;
|
|
118
119
|
/**
|
|
119
120
|
*
|
|
120
121
|
* @type {WorkOrderExtData}
|
|
121
122
|
* @memberof WorkOrderSearchDTO
|
|
122
123
|
*/
|
|
123
124
|
'workOrderExtData'?: WorkOrderExtData;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {WorkOrderHandlerDto}
|
|
128
|
+
* @memberof WorkOrderSearchDTO
|
|
129
|
+
*/
|
|
130
|
+
'handler'?: WorkOrderHandlerDto;
|
|
124
131
|
}
|
|
125
132
|
export declare const WorkOrderSearchDTOWorkOrderStatusEnum: {
|
|
126
133
|
readonly Pending: "PENDING";
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
* @interface EquipmentWorkOrderStatistics
|
|
16
|
+
*/
|
|
17
|
+
export interface EquipmentWorkOrderStatistics {
|
|
18
|
+
/**
|
|
19
|
+
* 数量
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof EquipmentWorkOrderStatistics
|
|
22
|
+
*/
|
|
23
|
+
'count'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* 最后时间
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof EquipmentWorkOrderStatistics
|
|
28
|
+
*/
|
|
29
|
+
'lastTime'?: string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* OpenAPI definition
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -41,6 +41,12 @@ export interface GetUserWx200Response {
|
|
|
41
41
|
* @memberof GetUserWx200Response
|
|
42
42
|
*/
|
|
43
43
|
'locale'?: GetUserWx200ResponseLocale;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {number}
|
|
47
|
+
* @memberof GetUserWx200Response
|
|
48
|
+
*/
|
|
49
|
+
'bufferSize'?: number;
|
|
44
50
|
/**
|
|
45
51
|
*
|
|
46
52
|
* @type {string}
|
|
@@ -59,12 +65,6 @@ export interface GetUserWx200Response {
|
|
|
59
65
|
* @memberof GetUserWx200Response
|
|
60
66
|
*/
|
|
61
67
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
62
|
-
/**
|
|
63
|
-
*
|
|
64
|
-
* @type {number}
|
|
65
|
-
* @memberof GetUserWx200Response
|
|
66
|
-
*/
|
|
67
|
-
'bufferSize'?: number;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
70
|
* @type {string}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -187,6 +187,7 @@ export * from './equipment-system-team-vo';
|
|
|
187
187
|
export * from './equipment-system-tree-dto';
|
|
188
188
|
export * from './equipment-tree-dto';
|
|
189
189
|
export * from './equipment-tree-details-dto';
|
|
190
|
+
export * from './equipment-work-order-statistics';
|
|
190
191
|
export * from './esg-park-by-series-dto';
|
|
191
192
|
export * from './esg-park-by-series-details-dto';
|
|
192
193
|
export * from './esg-park-carbon-emission-details-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -203,6 +203,7 @@ __exportStar(require("./equipment-system-team-vo"), exports);
|
|
|
203
203
|
__exportStar(require("./equipment-system-tree-dto"), exports);
|
|
204
204
|
__exportStar(require("./equipment-tree-dto"), exports);
|
|
205
205
|
__exportStar(require("./equipment-tree-details-dto"), exports);
|
|
206
|
+
__exportStar(require("./equipment-work-order-statistics"), exports);
|
|
206
207
|
__exportStar(require("./esg-park-by-series-dto"), exports);
|
|
207
208
|
__exportStar(require("./esg-park-by-series-details-dto"), exports);
|
|
208
209
|
__exportStar(require("./esg-park-carbon-emission-details-dto"), exports);
|
|
@@ -24,16 +24,16 @@ export interface IPageAccessVO {
|
|
|
24
24
|
'total'?: number;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
|
-
* @type {
|
|
27
|
+
* @type {Array<AccessVO>}
|
|
28
28
|
* @memberof IPageAccessVO
|
|
29
29
|
*/
|
|
30
|
-
'
|
|
30
|
+
'records'?: Array<AccessVO>;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {number}
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
35
|
*/
|
|
36
|
-
'
|
|
36
|
+
'current'?: number;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {boolean}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EquipmentWorkOrderStatistics } from './equipment-work-order-statistics';
|
|
12
13
|
import type { FunctionalAreaEnum } from './functional-area-enum';
|
|
13
14
|
import type { HikGetCamerasInfoVO } from './hik-get-cameras-info-vo';
|
|
14
15
|
import type { InstallationBodyEnum } from './installation-body-enum';
|
|
@@ -128,4 +129,10 @@ export interface SurveillanceDetailsDto {
|
|
|
128
129
|
* @memberof SurveillanceDetailsDto
|
|
129
130
|
*/
|
|
130
131
|
'hikGetCamerasInfo'?: HikGetCamerasInfoVO;
|
|
132
|
+
/**
|
|
133
|
+
*
|
|
134
|
+
* @type {EquipmentWorkOrderStatistics}
|
|
135
|
+
* @memberof SurveillanceDetailsDto
|
|
136
|
+
*/
|
|
137
|
+
'maintenanceStatistics'?: EquipmentWorkOrderStatistics;
|
|
131
138
|
}
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import type { WorkOrderDeptDTO } from './work-order-dept-dto';
|
|
13
13
|
import type { WorkOrderExtData } from './work-order-ext-data';
|
|
14
14
|
import type { WorkOrderHandlerDto } from './work-order-handler-dto';
|
|
15
|
+
import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
|
|
15
16
|
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
16
17
|
/**
|
|
17
18
|
* 工单查询DTO
|
|
@@ -111,16 +112,22 @@ export interface WorkOrderSearchDTO {
|
|
|
111
112
|
'inspectionException'?: boolean;
|
|
112
113
|
/**
|
|
113
114
|
*
|
|
114
|
-
* @type {
|
|
115
|
+
* @type {WorkOrderIssueTypeEnum}
|
|
115
116
|
* @memberof WorkOrderSearchDTO
|
|
116
117
|
*/
|
|
117
|
-
'
|
|
118
|
+
'workOrderIssueType'?: WorkOrderIssueTypeEnum;
|
|
118
119
|
/**
|
|
119
120
|
*
|
|
120
121
|
* @type {WorkOrderExtData}
|
|
121
122
|
* @memberof WorkOrderSearchDTO
|
|
122
123
|
*/
|
|
123
124
|
'workOrderExtData'?: WorkOrderExtData;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {WorkOrderHandlerDto}
|
|
128
|
+
* @memberof WorkOrderSearchDTO
|
|
129
|
+
*/
|
|
130
|
+
'handler'?: WorkOrderHandlerDto;
|
|
124
131
|
}
|
|
125
132
|
export declare const WorkOrderSearchDTOWorkOrderStatusEnum: {
|
|
126
133
|
readonly Pending: "PENDING";
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 设备工单统计
|
|
19
|
+
* @export
|
|
20
|
+
* @interface EquipmentWorkOrderStatistics
|
|
21
|
+
*/
|
|
22
|
+
export interface EquipmentWorkOrderStatistics {
|
|
23
|
+
/**
|
|
24
|
+
* 数量
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof EquipmentWorkOrderStatistics
|
|
27
|
+
*/
|
|
28
|
+
'count'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* 最后时间
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof EquipmentWorkOrderStatistics
|
|
33
|
+
*/
|
|
34
|
+
'lastTime'?: string;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -50,6 +50,12 @@ export interface GetUserWx200Response {
|
|
|
50
50
|
* @memberof GetUserWx200Response
|
|
51
51
|
*/
|
|
52
52
|
'locale'?: GetUserWx200ResponseLocale;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof GetUserWx200Response
|
|
57
|
+
*/
|
|
58
|
+
'bufferSize'?: number;
|
|
53
59
|
/**
|
|
54
60
|
*
|
|
55
61
|
* @type {string}
|
|
@@ -68,12 +74,6 @@ export interface GetUserWx200Response {
|
|
|
68
74
|
* @memberof GetUserWx200Response
|
|
69
75
|
*/
|
|
70
76
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
71
|
-
/**
|
|
72
|
-
*
|
|
73
|
-
* @type {number}
|
|
74
|
-
* @memberof GetUserWx200Response
|
|
75
|
-
*/
|
|
76
|
-
'bufferSize'?: number;
|
|
77
77
|
/**
|
|
78
78
|
*
|
|
79
79
|
* @type {string}
|
package/models/index.ts
CHANGED
|
@@ -187,6 +187,7 @@ export * from './equipment-system-team-vo';
|
|
|
187
187
|
export * from './equipment-system-tree-dto';
|
|
188
188
|
export * from './equipment-tree-dto';
|
|
189
189
|
export * from './equipment-tree-details-dto';
|
|
190
|
+
export * from './equipment-work-order-statistics';
|
|
190
191
|
export * from './esg-park-by-series-dto';
|
|
191
192
|
export * from './esg-park-by-series-details-dto';
|
|
192
193
|
export * from './esg-park-carbon-emission-details-dto';
|
|
@@ -31,16 +31,16 @@ export interface IPageAccessVO {
|
|
|
31
31
|
'total'?: number;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @type {
|
|
34
|
+
* @type {Array<AccessVO>}
|
|
35
35
|
* @memberof IPageAccessVO
|
|
36
36
|
*/
|
|
37
|
-
'
|
|
37
|
+
'records'?: Array<AccessVO>;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {number}
|
|
41
41
|
* @memberof IPageAccessVO
|
|
42
42
|
*/
|
|
43
|
-
'
|
|
43
|
+
'current'?: number;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {boolean}
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { EquipmentWorkOrderStatistics } from './equipment-work-order-statistics';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import type { FunctionalAreaEnum } from './functional-area-enum';
|
|
@@ -143,6 +146,12 @@ export interface SurveillanceDetailsDto {
|
|
|
143
146
|
* @memberof SurveillanceDetailsDto
|
|
144
147
|
*/
|
|
145
148
|
'hikGetCamerasInfo'?: HikGetCamerasInfoVO;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @type {EquipmentWorkOrderStatistics}
|
|
152
|
+
* @memberof SurveillanceDetailsDto
|
|
153
|
+
*/
|
|
154
|
+
'maintenanceStatistics'?: EquipmentWorkOrderStatistics;
|
|
146
155
|
}
|
|
147
156
|
|
|
148
157
|
|
|
@@ -24,6 +24,9 @@ import type { WorkOrderExtData } from './work-order-ext-data';
|
|
|
24
24
|
import type { WorkOrderHandlerDto } from './work-order-handler-dto';
|
|
25
25
|
// May contain unused imports in some cases
|
|
26
26
|
// @ts-ignore
|
|
27
|
+
import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
|
|
28
|
+
// May contain unused imports in some cases
|
|
29
|
+
// @ts-ignore
|
|
27
30
|
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
28
31
|
|
|
29
32
|
/**
|
|
@@ -124,16 +127,22 @@ export interface WorkOrderSearchDTO {
|
|
|
124
127
|
'inspectionException'?: boolean;
|
|
125
128
|
/**
|
|
126
129
|
*
|
|
127
|
-
* @type {
|
|
130
|
+
* @type {WorkOrderIssueTypeEnum}
|
|
128
131
|
* @memberof WorkOrderSearchDTO
|
|
129
132
|
*/
|
|
130
|
-
'
|
|
133
|
+
'workOrderIssueType'?: WorkOrderIssueTypeEnum;
|
|
131
134
|
/**
|
|
132
135
|
*
|
|
133
136
|
* @type {WorkOrderExtData}
|
|
134
137
|
* @memberof WorkOrderSearchDTO
|
|
135
138
|
*/
|
|
136
139
|
'workOrderExtData'?: WorkOrderExtData;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {WorkOrderHandlerDto}
|
|
143
|
+
* @memberof WorkOrderSearchDTO
|
|
144
|
+
*/
|
|
145
|
+
'handler'?: WorkOrderHandlerDto;
|
|
137
146
|
}
|
|
138
147
|
|
|
139
148
|
export const WorkOrderSearchDTOWorkOrderStatusEnum = {
|