@gizone/rrs-client 4.2.0-alpha.348 → 4.2.0-alpha.350
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 +6 -0
- package/apis/open-api-api.ts +214 -0
- package/apis/web-hook-api.ts +182 -0
- package/dist/apis/open-api-api.d.ts +110 -0
- package/dist/apis/open-api-api.js +156 -0
- package/dist/apis/web-hook-api.d.ts +94 -0
- package/dist/apis/web-hook-api.js +140 -0
- package/dist/esm/apis/open-api-api.d.ts +110 -0
- package/dist/esm/apis/open-api-api.js +156 -0
- package/dist/esm/apis/web-hook-api.d.ts +94 -0
- package/dist/esm/apis/web-hook-api.js +140 -0
- package/dist/esm/models/index.d.ts +6 -0
- package/dist/esm/models/index.js +6 -0
- package/dist/esm/models/insurance-notice-vo.d.ts +54 -0
- package/dist/esm/models/insurance-notice-vo.js +14 -0
- package/dist/esm/models/insurance-work-order-issue-vo.d.ts +79 -0
- package/dist/esm/models/insurance-work-order-issue-vo.js +14 -0
- package/dist/esm/models/insurance-work-order-vo.d.ts +37 -0
- package/dist/esm/models/insurance-work-order-vo.js +14 -0
- package/dist/esm/models/json-result-page-dto-open-api-equipment-list-dto.d.ts +62 -0
- package/dist/esm/models/json-result-page-dto-open-api-equipment-list-dto.js +14 -0
- package/dist/esm/models/open-api-equipment-list-dto.d.ts +110 -0
- package/dist/esm/models/open-api-equipment-list-dto.js +14 -0
- package/dist/esm/models/page-dto-open-api-equipment-list-dto.d.ts +31 -0
- package/dist/esm/models/page-dto-open-api-equipment-list-dto.js +14 -0
- package/dist/esm/models/work-order-issue-type-enum.d.ts +1 -1
- package/dist/esm/models/work-order-issue-type-enum.js +1 -1
- package/dist/esm/models/work-order-search-dto.d.ts +7 -1
- package/dist/models/index.d.ts +6 -0
- package/dist/models/index.js +6 -0
- package/dist/models/insurance-notice-vo.d.ts +54 -0
- package/dist/models/insurance-notice-vo.js +15 -0
- package/dist/models/insurance-work-order-issue-vo.d.ts +79 -0
- package/dist/models/insurance-work-order-issue-vo.js +15 -0
- package/dist/models/insurance-work-order-vo.d.ts +37 -0
- package/dist/models/insurance-work-order-vo.js +15 -0
- package/dist/models/json-result-page-dto-open-api-equipment-list-dto.d.ts +62 -0
- package/dist/models/json-result-page-dto-open-api-equipment-list-dto.js +15 -0
- package/dist/models/open-api-equipment-list-dto.d.ts +110 -0
- package/dist/models/open-api-equipment-list-dto.js +15 -0
- package/dist/models/page-dto-open-api-equipment-list-dto.d.ts +31 -0
- package/dist/models/page-dto-open-api-equipment-list-dto.js +15 -0
- package/dist/models/work-order-issue-type-enum.d.ts +1 -1
- package/dist/models/work-order-issue-type-enum.js +1 -1
- package/dist/models/work-order-search-dto.d.ts +7 -1
- package/models/index.ts +6 -0
- package/models/insurance-notice-vo.ts +60 -0
- package/models/insurance-work-order-issue-vo.ts +89 -0
- package/models/insurance-work-order-vo.ts +45 -0
- package/models/json-result-page-dto-open-api-equipment-list-dto.ts +72 -0
- package/models/open-api-equipment-list-dto.ts +122 -0
- package/models/page-dto-open-api-equipment-list-dto.ts +39 -0
- package/models/work-order-issue-type-enum.ts +1 -1
- package/models/work-order-search-dto.ts +7 -1
- package/package.json +1 -1
|
@@ -0,0 +1,79 @@
|
|
|
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
|
+
import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
|
|
13
|
+
/**
|
|
14
|
+
* 问题
|
|
15
|
+
* @export
|
|
16
|
+
* @interface InsuranceWorkOrderIssueVo
|
|
17
|
+
*/
|
|
18
|
+
export interface InsuranceWorkOrderIssueVo {
|
|
19
|
+
/**
|
|
20
|
+
* 问题单号
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
23
|
+
*/
|
|
24
|
+
'issuesNo': string;
|
|
25
|
+
/**
|
|
26
|
+
* 问题时间
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
29
|
+
*/
|
|
30
|
+
'issuesTime': string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {WorkOrderIssueTypeEnum}
|
|
34
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
35
|
+
*/
|
|
36
|
+
'issueType': WorkOrderIssueTypeEnum;
|
|
37
|
+
/**
|
|
38
|
+
* 问题描述
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
41
|
+
*/
|
|
42
|
+
'issuesDesc': string;
|
|
43
|
+
/**
|
|
44
|
+
* 问题设备ID
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
47
|
+
*/
|
|
48
|
+
'issuesEquipmentId': number;
|
|
49
|
+
/**
|
|
50
|
+
* 问题空间ID
|
|
51
|
+
* @type {number}
|
|
52
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
53
|
+
*/
|
|
54
|
+
'issuesSpaceId': number;
|
|
55
|
+
/**
|
|
56
|
+
* 风险类别
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
59
|
+
*/
|
|
60
|
+
'riskCategory': string;
|
|
61
|
+
/**
|
|
62
|
+
* 风险等级
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
65
|
+
*/
|
|
66
|
+
'riskLevel': string;
|
|
67
|
+
/**
|
|
68
|
+
* 要求整改时间
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
71
|
+
*/
|
|
72
|
+
'rectificationTime': string;
|
|
73
|
+
/**
|
|
74
|
+
* 隐患照片
|
|
75
|
+
* @type {Array<string>}
|
|
76
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
77
|
+
*/
|
|
78
|
+
'hazardPhotoUrls': Array<string>;
|
|
79
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
export {};
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
import type { InsuranceWorkOrderIssueVo } from './insurance-work-order-issue-vo';
|
|
13
|
+
/**
|
|
14
|
+
* 接收保险问题入参
|
|
15
|
+
* @export
|
|
16
|
+
* @interface InsuranceWorkOrderVo
|
|
17
|
+
*/
|
|
18
|
+
export interface InsuranceWorkOrderVo {
|
|
19
|
+
/**
|
|
20
|
+
* 园区编码
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof InsuranceWorkOrderVo
|
|
23
|
+
*/
|
|
24
|
+
'parkCode': string;
|
|
25
|
+
/**
|
|
26
|
+
* 保险单号
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof InsuranceWorkOrderVo
|
|
29
|
+
*/
|
|
30
|
+
'insuranceNo': string;
|
|
31
|
+
/**
|
|
32
|
+
* 问题
|
|
33
|
+
* @type {Array<InsuranceWorkOrderIssueVo>}
|
|
34
|
+
* @memberof InsuranceWorkOrderVo
|
|
35
|
+
*/
|
|
36
|
+
'issues': Array<InsuranceWorkOrderIssueVo>;
|
|
37
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
export {};
|
|
@@ -0,0 +1,62 @@
|
|
|
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
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
13
|
+
import type { PageDtoOpenApiEquipmentListDto } from './page-dto-open-api-equipment-list-dto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultPageDtoOpenApiEquipmentListDto
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultPageDtoOpenApiEquipmentListDto {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultPageDtoOpenApiEquipmentListDto
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultPageDtoOpenApiEquipmentListDto
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultPageDtoOpenApiEquipmentListDto
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {PageDtoOpenApiEquipmentListDto}
|
|
41
|
+
* @memberof JsonResultPageDtoOpenApiEquipmentListDto
|
|
42
|
+
*/
|
|
43
|
+
'data'?: PageDtoOpenApiEquipmentListDto | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultPageDtoOpenApiEquipmentListDto
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultPageDtoOpenApiEquipmentListDto
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultPageDtoOpenApiEquipmentListDto
|
|
60
|
+
*/
|
|
61
|
+
'requestId'?: string | null;
|
|
62
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
export {};
|
|
@@ -0,0 +1,110 @@
|
|
|
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
|
+
import type { EquipmentStatusEnum } from './equipment-status-enum';
|
|
13
|
+
import type { ThirdPartySystemEnum } from './third-party-system-enum';
|
|
14
|
+
/**
|
|
15
|
+
* openApi接口设备返回参数
|
|
16
|
+
* @export
|
|
17
|
+
* @interface OpenApiEquipmentListDto
|
|
18
|
+
*/
|
|
19
|
+
export interface OpenApiEquipmentListDto {
|
|
20
|
+
/**
|
|
21
|
+
* id
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof OpenApiEquipmentListDto
|
|
24
|
+
*/
|
|
25
|
+
'id'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 设备名称
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof OpenApiEquipmentListDto
|
|
30
|
+
*/
|
|
31
|
+
'equipmentName'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {EquipmentStatusEnum}
|
|
35
|
+
* @memberof OpenApiEquipmentListDto
|
|
36
|
+
*/
|
|
37
|
+
'equipmentStatus'?: EquipmentStatusEnum;
|
|
38
|
+
/**
|
|
39
|
+
* 设备系统
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof OpenApiEquipmentListDto
|
|
42
|
+
*/
|
|
43
|
+
'equipmentSystem'?: string;
|
|
44
|
+
/**
|
|
45
|
+
* 设备系统ID
|
|
46
|
+
* @type {number}
|
|
47
|
+
* @memberof OpenApiEquipmentListDto
|
|
48
|
+
*/
|
|
49
|
+
'equipmentSystemId'?: number;
|
|
50
|
+
/**
|
|
51
|
+
* 设备等级
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof OpenApiEquipmentListDto
|
|
54
|
+
*/
|
|
55
|
+
'equipmentClass'?: string;
|
|
56
|
+
/**
|
|
57
|
+
* 出厂时间
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof OpenApiEquipmentListDto
|
|
60
|
+
*/
|
|
61
|
+
'deliveryTime'?: string;
|
|
62
|
+
/**
|
|
63
|
+
* 现场安装时间
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof OpenApiEquipmentListDto
|
|
66
|
+
*/
|
|
67
|
+
'installTime'?: string;
|
|
68
|
+
/**
|
|
69
|
+
* 质保时间
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof OpenApiEquipmentListDto
|
|
72
|
+
*/
|
|
73
|
+
'warrantyTime'?: string;
|
|
74
|
+
/**
|
|
75
|
+
* 空间id
|
|
76
|
+
* @type {number}
|
|
77
|
+
* @memberof OpenApiEquipmentListDto
|
|
78
|
+
*/
|
|
79
|
+
'spaceId'?: number;
|
|
80
|
+
/**
|
|
81
|
+
* 是否公共区域
|
|
82
|
+
* @type {boolean}
|
|
83
|
+
* @memberof OpenApiEquipmentListDto
|
|
84
|
+
*/
|
|
85
|
+
'isPublicArea'?: boolean;
|
|
86
|
+
/**
|
|
87
|
+
* 关联设备id
|
|
88
|
+
* @type {Array<number>}
|
|
89
|
+
* @memberof OpenApiEquipmentListDto
|
|
90
|
+
*/
|
|
91
|
+
'relatedEquipmentIds'?: Array<number>;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {ThirdPartySystemEnum}
|
|
95
|
+
* @memberof OpenApiEquipmentListDto
|
|
96
|
+
*/
|
|
97
|
+
'source'?: ThirdPartySystemEnum;
|
|
98
|
+
/**
|
|
99
|
+
* 设备编码
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof OpenApiEquipmentListDto
|
|
102
|
+
*/
|
|
103
|
+
'equipmentCode'?: string;
|
|
104
|
+
/**
|
|
105
|
+
* 资产编码
|
|
106
|
+
* @type {string}
|
|
107
|
+
* @memberof OpenApiEquipmentListDto
|
|
108
|
+
*/
|
|
109
|
+
'famEquipmentCode'?: string;
|
|
110
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
export {};
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
import type { OpenApiEquipmentListDto } from './open-api-equipment-list-dto';
|
|
13
|
+
/**
|
|
14
|
+
* 返回数据,可以是任意类型的值
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PageDtoOpenApiEquipmentListDto
|
|
17
|
+
*/
|
|
18
|
+
export interface PageDtoOpenApiEquipmentListDto {
|
|
19
|
+
/**
|
|
20
|
+
* 总记录数
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof PageDtoOpenApiEquipmentListDto
|
|
23
|
+
*/
|
|
24
|
+
'totalSize'?: number;
|
|
25
|
+
/**
|
|
26
|
+
* 页数据列表
|
|
27
|
+
* @type {Array<OpenApiEquipmentListDto>}
|
|
28
|
+
* @memberof PageDtoOpenApiEquipmentListDto
|
|
29
|
+
*/
|
|
30
|
+
'pageList'?: Array<OpenApiEquipmentListDto>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
export {};
|
|
@@ -59,7 +59,7 @@ export interface WorkOrderSearchDTO {
|
|
|
59
59
|
*/
|
|
60
60
|
'workOrderDepts'?: Array<WorkOrderDeptDTO>;
|
|
61
61
|
/**
|
|
62
|
-
* 响应时间
|
|
62
|
+
* 响应时间(分)
|
|
63
63
|
* @type {number}
|
|
64
64
|
* @memberof WorkOrderSearchDTO
|
|
65
65
|
*/
|
|
@@ -142,6 +142,12 @@ export interface WorkOrderSearchDTO {
|
|
|
142
142
|
* @memberof WorkOrderSearchDTO
|
|
143
143
|
*/
|
|
144
144
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
145
|
+
/**
|
|
146
|
+
* 预计执行时间(小时)
|
|
147
|
+
* @type {number}
|
|
148
|
+
* @memberof WorkOrderSearchDTO
|
|
149
|
+
*/
|
|
150
|
+
'estimateExecutionTime'?: number;
|
|
145
151
|
}
|
|
146
152
|
export declare const WorkOrderSearchDTOSamplingResultsEnum: {
|
|
147
153
|
readonly Zero: "ZERO";
|
package/dist/models/index.d.ts
CHANGED
|
@@ -135,6 +135,9 @@ export * from './inspection-standard-entity';
|
|
|
135
135
|
export * from './inspection-standard-import-dto';
|
|
136
136
|
export * from './inspection-standard-type-enum';
|
|
137
137
|
export * from './installation-body-enum';
|
|
138
|
+
export * from './insurance-notice-vo';
|
|
139
|
+
export * from './insurance-work-order-issue-vo';
|
|
140
|
+
export * from './insurance-work-order-vo';
|
|
138
141
|
export * from './iot-device-status-enum';
|
|
139
142
|
export * from './json-result';
|
|
140
143
|
export * from './json-result-access-appointment-record-details-dto';
|
|
@@ -213,6 +216,7 @@ export * from './json-result-page-dto-disaster-warning-standard-entity';
|
|
|
213
216
|
export * from './json-result-page-dto-equipment-search-system-dto';
|
|
214
217
|
export * from './json-result-page-dto-inspection-standard-dto';
|
|
215
218
|
export * from './json-result-page-dto-maintenance-standard-dto';
|
|
219
|
+
export * from './json-result-page-dto-open-api-equipment-list-dto';
|
|
216
220
|
export * from './json-result-page-dto-plan-search-dto';
|
|
217
221
|
export * from './json-result-page-dto-supplier-contract-details-dto';
|
|
218
222
|
export * from './json-result-page-dto-surveillance-details-dto';
|
|
@@ -268,6 +272,7 @@ export * from './offline-alert-work-order-details-dto';
|
|
|
268
272
|
export * from './offline-alert-work-order-info';
|
|
269
273
|
export * from './offline-alert-work-order-vo';
|
|
270
274
|
export * from './open-api-access-appointment-record-add-vo';
|
|
275
|
+
export * from './open-api-equipment-list-dto';
|
|
271
276
|
export * from './page-dto-access-appointment-record-details-dto';
|
|
272
277
|
export * from './page-dto-access-blacklist-details-dto';
|
|
273
278
|
export * from './page-dto-access-record-summary-list-dto';
|
|
@@ -277,6 +282,7 @@ export * from './page-dto-disaster-warning-standard-entity';
|
|
|
277
282
|
export * from './page-dto-equipment-search-system-dto';
|
|
278
283
|
export * from './page-dto-inspection-standard-dto';
|
|
279
284
|
export * from './page-dto-maintenance-standard-dto';
|
|
285
|
+
export * from './page-dto-open-api-equipment-list-dto';
|
|
280
286
|
export * from './page-dto-plan-search-dto';
|
|
281
287
|
export * from './page-dto-supplier-contract-details-dto';
|
|
282
288
|
export * from './page-dto-surveillance-details-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -151,6 +151,9 @@ __exportStar(require("./inspection-standard-entity"), exports);
|
|
|
151
151
|
__exportStar(require("./inspection-standard-import-dto"), exports);
|
|
152
152
|
__exportStar(require("./inspection-standard-type-enum"), exports);
|
|
153
153
|
__exportStar(require("./installation-body-enum"), exports);
|
|
154
|
+
__exportStar(require("./insurance-notice-vo"), exports);
|
|
155
|
+
__exportStar(require("./insurance-work-order-issue-vo"), exports);
|
|
156
|
+
__exportStar(require("./insurance-work-order-vo"), exports);
|
|
154
157
|
__exportStar(require("./iot-device-status-enum"), exports);
|
|
155
158
|
__exportStar(require("./json-result"), exports);
|
|
156
159
|
__exportStar(require("./json-result-access-appointment-record-details-dto"), exports);
|
|
@@ -229,6 +232,7 @@ __exportStar(require("./json-result-page-dto-disaster-warning-standard-entity"),
|
|
|
229
232
|
__exportStar(require("./json-result-page-dto-equipment-search-system-dto"), exports);
|
|
230
233
|
__exportStar(require("./json-result-page-dto-inspection-standard-dto"), exports);
|
|
231
234
|
__exportStar(require("./json-result-page-dto-maintenance-standard-dto"), exports);
|
|
235
|
+
__exportStar(require("./json-result-page-dto-open-api-equipment-list-dto"), exports);
|
|
232
236
|
__exportStar(require("./json-result-page-dto-plan-search-dto"), exports);
|
|
233
237
|
__exportStar(require("./json-result-page-dto-supplier-contract-details-dto"), exports);
|
|
234
238
|
__exportStar(require("./json-result-page-dto-surveillance-details-dto"), exports);
|
|
@@ -284,6 +288,7 @@ __exportStar(require("./offline-alert-work-order-details-dto"), exports);
|
|
|
284
288
|
__exportStar(require("./offline-alert-work-order-info"), exports);
|
|
285
289
|
__exportStar(require("./offline-alert-work-order-vo"), exports);
|
|
286
290
|
__exportStar(require("./open-api-access-appointment-record-add-vo"), exports);
|
|
291
|
+
__exportStar(require("./open-api-equipment-list-dto"), exports);
|
|
287
292
|
__exportStar(require("./page-dto-access-appointment-record-details-dto"), exports);
|
|
288
293
|
__exportStar(require("./page-dto-access-blacklist-details-dto"), exports);
|
|
289
294
|
__exportStar(require("./page-dto-access-record-summary-list-dto"), exports);
|
|
@@ -293,6 +298,7 @@ __exportStar(require("./page-dto-disaster-warning-standard-entity"), exports);
|
|
|
293
298
|
__exportStar(require("./page-dto-equipment-search-system-dto"), exports);
|
|
294
299
|
__exportStar(require("./page-dto-inspection-standard-dto"), exports);
|
|
295
300
|
__exportStar(require("./page-dto-maintenance-standard-dto"), exports);
|
|
301
|
+
__exportStar(require("./page-dto-open-api-equipment-list-dto"), exports);
|
|
296
302
|
__exportStar(require("./page-dto-plan-search-dto"), exports);
|
|
297
303
|
__exportStar(require("./page-dto-supplier-contract-details-dto"), exports);
|
|
298
304
|
__exportStar(require("./page-dto-surveillance-details-dto"), exports);
|
|
@@ -0,0 +1,54 @@
|
|
|
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 InsuranceNoticeVo
|
|
16
|
+
*/
|
|
17
|
+
export interface InsuranceNoticeVo {
|
|
18
|
+
/**
|
|
19
|
+
* 园区编码
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InsuranceNoticeVo
|
|
22
|
+
*/
|
|
23
|
+
'parkCode': string;
|
|
24
|
+
/**
|
|
25
|
+
* 考察时间
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof InsuranceNoticeVo
|
|
28
|
+
*/
|
|
29
|
+
'visitTime': string;
|
|
30
|
+
/**
|
|
31
|
+
* 考察内容
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof InsuranceNoticeVo
|
|
34
|
+
*/
|
|
35
|
+
'visitContent': string;
|
|
36
|
+
/**
|
|
37
|
+
* 联系人
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof InsuranceNoticeVo
|
|
40
|
+
*/
|
|
41
|
+
'contactName': string;
|
|
42
|
+
/**
|
|
43
|
+
* 联系电话
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof InsuranceNoticeVo
|
|
46
|
+
*/
|
|
47
|
+
'contactPhone': string;
|
|
48
|
+
/**
|
|
49
|
+
* 参与人员
|
|
50
|
+
* @type {Array<string>}
|
|
51
|
+
* @memberof InsuranceNoticeVo
|
|
52
|
+
*/
|
|
53
|
+
'participants': Array<string>;
|
|
54
|
+
}
|
|
@@ -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 });
|
|
@@ -0,0 +1,79 @@
|
|
|
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
|
+
import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
|
|
13
|
+
/**
|
|
14
|
+
* 问题
|
|
15
|
+
* @export
|
|
16
|
+
* @interface InsuranceWorkOrderIssueVo
|
|
17
|
+
*/
|
|
18
|
+
export interface InsuranceWorkOrderIssueVo {
|
|
19
|
+
/**
|
|
20
|
+
* 问题单号
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
23
|
+
*/
|
|
24
|
+
'issuesNo': string;
|
|
25
|
+
/**
|
|
26
|
+
* 问题时间
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
29
|
+
*/
|
|
30
|
+
'issuesTime': string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {WorkOrderIssueTypeEnum}
|
|
34
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
35
|
+
*/
|
|
36
|
+
'issueType': WorkOrderIssueTypeEnum;
|
|
37
|
+
/**
|
|
38
|
+
* 问题描述
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
41
|
+
*/
|
|
42
|
+
'issuesDesc': string;
|
|
43
|
+
/**
|
|
44
|
+
* 问题设备ID
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
47
|
+
*/
|
|
48
|
+
'issuesEquipmentId': number;
|
|
49
|
+
/**
|
|
50
|
+
* 问题空间ID
|
|
51
|
+
* @type {number}
|
|
52
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
53
|
+
*/
|
|
54
|
+
'issuesSpaceId': number;
|
|
55
|
+
/**
|
|
56
|
+
* 风险类别
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
59
|
+
*/
|
|
60
|
+
'riskCategory': string;
|
|
61
|
+
/**
|
|
62
|
+
* 风险等级
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
65
|
+
*/
|
|
66
|
+
'riskLevel': string;
|
|
67
|
+
/**
|
|
68
|
+
* 要求整改时间
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
71
|
+
*/
|
|
72
|
+
'rectificationTime': string;
|
|
73
|
+
/**
|
|
74
|
+
* 隐患照片
|
|
75
|
+
* @type {Array<string>}
|
|
76
|
+
* @memberof InsuranceWorkOrderIssueVo
|
|
77
|
+
*/
|
|
78
|
+
'hazardPhotoUrls': Array<string>;
|
|
79
|
+
}
|
|
@@ -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 });
|