@gizone/rrs-client 4.2.0-alpha.366 → 4.2.0-alpha.368
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 +3 -0
- package/apis/work-order-api.ts +89 -0
- package/dist/apis/work-order-api.d.ts +47 -0
- package/dist/apis/work-order-api.js +69 -0
- package/dist/esm/apis/work-order-api.d.ts +47 -0
- package/dist/esm/apis/work-order-api.js +69 -0
- package/dist/esm/models/exploration-work-order-details-dto.d.ts +123 -0
- package/dist/esm/models/exploration-work-order-details-dto.js +14 -0
- package/dist/esm/models/index.d.ts +3 -0
- package/dist/esm/models/index.js +3 -0
- package/dist/esm/models/json-result-exploration-work-order-details-dto.d.ts +62 -0
- package/dist/esm/models/json-result-exploration-work-order-details-dto.js +14 -0
- package/dist/esm/models/work-order-equipment-dto.d.ts +36 -0
- package/dist/esm/models/work-order-equipment-dto.js +14 -0
- package/dist/esm/models/work-order-settings-type-enum.d.ts +1 -0
- package/dist/esm/models/work-order-settings-type-enum.js +2 -1
- package/dist/models/exploration-work-order-details-dto.d.ts +123 -0
- package/dist/models/exploration-work-order-details-dto.js +15 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/json-result-exploration-work-order-details-dto.d.ts +62 -0
- package/dist/models/json-result-exploration-work-order-details-dto.js +15 -0
- package/dist/models/work-order-equipment-dto.d.ts +36 -0
- package/dist/models/work-order-equipment-dto.js +15 -0
- package/dist/models/work-order-settings-type-enum.d.ts +1 -0
- package/dist/models/work-order-settings-type-enum.js +2 -1
- package/models/exploration-work-order-details-dto.ts +149 -0
- package/models/index.ts +3 -0
- package/models/json-result-exploration-work-order-details-dto.ts +72 -0
- package/models/work-order-equipment-dto.ts +42 -0
- package/models/work-order-settings-type-enum.ts +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,149 @@
|
|
|
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
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { WorkOrderDeptDTO } from './work-order-dept-dto';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { WorkOrderEquipmentDto } from './work-order-equipment-dto';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import type { WorkOrderExtData } from './work-order-ext-data';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
import type { WorkOrderHandlerDto } from './work-order-handler-dto';
|
|
28
|
+
// May contain unused imports in some cases
|
|
29
|
+
// @ts-ignore
|
|
30
|
+
import type { WorkOrderInternalStatusEnum } from './work-order-internal-status-enum';
|
|
31
|
+
// May contain unused imports in some cases
|
|
32
|
+
// @ts-ignore
|
|
33
|
+
import type { WorkOrderSpaceDto } from './work-order-space-dto';
|
|
34
|
+
// May contain unused imports in some cases
|
|
35
|
+
// @ts-ignore
|
|
36
|
+
import type { WorkOrderSponsorDto } from './work-order-sponsor-dto';
|
|
37
|
+
// May contain unused imports in some cases
|
|
38
|
+
// @ts-ignore
|
|
39
|
+
import type { WorkOrderStatusEnum } from './work-order-status-enum';
|
|
40
|
+
// May contain unused imports in some cases
|
|
41
|
+
// @ts-ignore
|
|
42
|
+
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* 勘探工单详情
|
|
46
|
+
* @export
|
|
47
|
+
* @interface ExplorationWorkOrderDetailsDto
|
|
48
|
+
*/
|
|
49
|
+
export interface ExplorationWorkOrderDetailsDto {
|
|
50
|
+
/**
|
|
51
|
+
* 工单ID
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
54
|
+
*/
|
|
55
|
+
'id'?: number;
|
|
56
|
+
/**
|
|
57
|
+
* 园区ID
|
|
58
|
+
* @type {number}
|
|
59
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
60
|
+
*/
|
|
61
|
+
'parkId'?: number;
|
|
62
|
+
/**
|
|
63
|
+
* 工单编号
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
66
|
+
*/
|
|
67
|
+
'workOrderNo'?: string;
|
|
68
|
+
/**
|
|
69
|
+
* 工单名称
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
72
|
+
*/
|
|
73
|
+
'workOrderName'?: string;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {WorkOrderTypeEnum}
|
|
77
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
78
|
+
*/
|
|
79
|
+
'workOrderType'?: WorkOrderTypeEnum;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {WorkOrderStatusEnum}
|
|
83
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
84
|
+
*/
|
|
85
|
+
'workOrderStatus'?: WorkOrderStatusEnum;
|
|
86
|
+
/**
|
|
87
|
+
* 工单执行部门列表
|
|
88
|
+
* @type {Array<WorkOrderDeptDTO>}
|
|
89
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
90
|
+
*/
|
|
91
|
+
'workOrderDepts'?: Array<WorkOrderDeptDTO>;
|
|
92
|
+
/**
|
|
93
|
+
* 工单执行部门ID列表
|
|
94
|
+
* @type {Array<number>}
|
|
95
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
96
|
+
*/
|
|
97
|
+
'workOrderDeptIds'?: Array<number>;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {WorkOrderInternalStatusEnum}
|
|
101
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
102
|
+
*/
|
|
103
|
+
'internalStatus'?: WorkOrderInternalStatusEnum;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {WorkOrderSponsorDto}
|
|
107
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
108
|
+
*/
|
|
109
|
+
'sponsor'?: WorkOrderSponsorDto;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {WorkOrderHandlerDto}
|
|
113
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
114
|
+
*/
|
|
115
|
+
'handler'?: WorkOrderHandlerDto;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {WorkOrderExtData}
|
|
119
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
120
|
+
*/
|
|
121
|
+
'workOrderExtData'?: WorkOrderExtData;
|
|
122
|
+
/**
|
|
123
|
+
* 预计执行时间(分钟)
|
|
124
|
+
* @type {number}
|
|
125
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
126
|
+
*/
|
|
127
|
+
'estimateExecutionTime'?: number;
|
|
128
|
+
/**
|
|
129
|
+
* 是否超时
|
|
130
|
+
* @type {boolean}
|
|
131
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
132
|
+
*/
|
|
133
|
+
'isTimeOut'?: boolean;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {WorkOrderSpaceDto}
|
|
137
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
138
|
+
*/
|
|
139
|
+
'space'?: WorkOrderSpaceDto;
|
|
140
|
+
/**
|
|
141
|
+
* 设备详情
|
|
142
|
+
* @type {Array<WorkOrderEquipmentDto>}
|
|
143
|
+
* @memberof ExplorationWorkOrderDetailsDto
|
|
144
|
+
*/
|
|
145
|
+
'equipments'?: Array<WorkOrderEquipmentDto>;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
|
package/models/index.ts
CHANGED
|
@@ -115,6 +115,7 @@ export * from './excel-import-result-dtomaintenance-standard-import-dto';
|
|
|
115
115
|
export * from './excel-import-result-dtosurveillance-batch-import-template-dto';
|
|
116
116
|
export * from './excel-import-result-dtosurveillance-settings-export-dto';
|
|
117
117
|
export * from './excel-import-upload-to-redis-vo-space-add-excel-dto';
|
|
118
|
+
export * from './exploration-work-order-details-dto';
|
|
118
119
|
export * from './exploration-work-order-info';
|
|
119
120
|
export * from './exploration-work-order-submit-vo';
|
|
120
121
|
export * from './exploration-work-order-type-enum';
|
|
@@ -167,6 +168,7 @@ export * from './json-result-excel-import-result-dtomaintenance-standard-import-
|
|
|
167
168
|
export * from './json-result-excel-import-result-dtosurveillance-batch-import-template-dto';
|
|
168
169
|
export * from './json-result-excel-import-result-dtosurveillance-settings-export-dto';
|
|
169
170
|
export * from './json-result-excel-import-upload-to-redis-vo-space-add-excel-dto';
|
|
171
|
+
export * from './json-result-exploration-work-order-details-dto';
|
|
170
172
|
export * from './json-result-file-dto';
|
|
171
173
|
export * from './json-result-group-dept-vo';
|
|
172
174
|
export * from './json-result-inspection-standard-entity';
|
|
@@ -438,6 +440,7 @@ export * from './work-order-dept-settings-add-or-update-vo';
|
|
|
438
440
|
export * from './work-order-dept-settings-entity';
|
|
439
441
|
export * from './work-order-detail-dto';
|
|
440
442
|
export * from './work-order-distribute-leaflets-vo';
|
|
443
|
+
export * from './work-order-equipment-dto';
|
|
441
444
|
export * from './work-order-ext-data';
|
|
442
445
|
export * from './work-order-handler-dto';
|
|
443
446
|
export * from './work-order-handler-status-enum';
|
|
@@ -0,0 +1,72 @@
|
|
|
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
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { ExplorationWorkOrderDetailsDto } from './exploration-work-order-details-dto';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultExplorationWorkOrderDetailsDto
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultExplorationWorkOrderDetailsDto {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultExplorationWorkOrderDetailsDto
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultExplorationWorkOrderDetailsDto
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultExplorationWorkOrderDetailsDto
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {ExplorationWorkOrderDetailsDto}
|
|
50
|
+
* @memberof JsonResultExplorationWorkOrderDetailsDto
|
|
51
|
+
*/
|
|
52
|
+
'data'?: ExplorationWorkOrderDetailsDto | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultExplorationWorkOrderDetailsDto
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultExplorationWorkOrderDetailsDto
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultExplorationWorkOrderDetailsDto
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
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 WorkOrderEquipmentDto
|
|
21
|
+
*/
|
|
22
|
+
export interface WorkOrderEquipmentDto {
|
|
23
|
+
/**
|
|
24
|
+
* 设备id
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof WorkOrderEquipmentDto
|
|
27
|
+
*/
|
|
28
|
+
'equipmentId'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* 设备名称
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof WorkOrderEquipmentDto
|
|
33
|
+
*/
|
|
34
|
+
'equipmentName'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* 关联设备
|
|
37
|
+
* @type {Array<number>}
|
|
38
|
+
* @memberof WorkOrderEquipmentDto
|
|
39
|
+
*/
|
|
40
|
+
'relatedEquipmentIds'?: Array<number>;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -29,7 +29,8 @@ export const WorkOrderSettingsTypeEnum = {
|
|
|
29
29
|
ViolationWorkOrder: 'VIOLATION_WORK_ORDER',
|
|
30
30
|
OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
|
|
31
31
|
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
|
|
32
|
-
DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER'
|
|
32
|
+
DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER',
|
|
33
|
+
ExplorationWorkOrder: 'EXPLORATION_WORK_ORDER'
|
|
33
34
|
} as const;
|
|
34
35
|
|
|
35
36
|
export type WorkOrderSettingsTypeEnum = typeof WorkOrderSettingsTypeEnum[keyof typeof WorkOrderSettingsTypeEnum];
|