@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.
Files changed (55) hide show
  1. package/.openapi-generator/FILES +6 -0
  2. package/apis/open-api-api.ts +214 -0
  3. package/apis/web-hook-api.ts +182 -0
  4. package/dist/apis/open-api-api.d.ts +110 -0
  5. package/dist/apis/open-api-api.js +156 -0
  6. package/dist/apis/web-hook-api.d.ts +94 -0
  7. package/dist/apis/web-hook-api.js +140 -0
  8. package/dist/esm/apis/open-api-api.d.ts +110 -0
  9. package/dist/esm/apis/open-api-api.js +156 -0
  10. package/dist/esm/apis/web-hook-api.d.ts +94 -0
  11. package/dist/esm/apis/web-hook-api.js +140 -0
  12. package/dist/esm/models/index.d.ts +6 -0
  13. package/dist/esm/models/index.js +6 -0
  14. package/dist/esm/models/insurance-notice-vo.d.ts +54 -0
  15. package/dist/esm/models/insurance-notice-vo.js +14 -0
  16. package/dist/esm/models/insurance-work-order-issue-vo.d.ts +79 -0
  17. package/dist/esm/models/insurance-work-order-issue-vo.js +14 -0
  18. package/dist/esm/models/insurance-work-order-vo.d.ts +37 -0
  19. package/dist/esm/models/insurance-work-order-vo.js +14 -0
  20. package/dist/esm/models/json-result-page-dto-open-api-equipment-list-dto.d.ts +62 -0
  21. package/dist/esm/models/json-result-page-dto-open-api-equipment-list-dto.js +14 -0
  22. package/dist/esm/models/open-api-equipment-list-dto.d.ts +110 -0
  23. package/dist/esm/models/open-api-equipment-list-dto.js +14 -0
  24. package/dist/esm/models/page-dto-open-api-equipment-list-dto.d.ts +31 -0
  25. package/dist/esm/models/page-dto-open-api-equipment-list-dto.js +14 -0
  26. package/dist/esm/models/work-order-issue-type-enum.d.ts +1 -1
  27. package/dist/esm/models/work-order-issue-type-enum.js +1 -1
  28. package/dist/esm/models/work-order-search-dto.d.ts +7 -1
  29. package/dist/models/index.d.ts +6 -0
  30. package/dist/models/index.js +6 -0
  31. package/dist/models/insurance-notice-vo.d.ts +54 -0
  32. package/dist/models/insurance-notice-vo.js +15 -0
  33. package/dist/models/insurance-work-order-issue-vo.d.ts +79 -0
  34. package/dist/models/insurance-work-order-issue-vo.js +15 -0
  35. package/dist/models/insurance-work-order-vo.d.ts +37 -0
  36. package/dist/models/insurance-work-order-vo.js +15 -0
  37. package/dist/models/json-result-page-dto-open-api-equipment-list-dto.d.ts +62 -0
  38. package/dist/models/json-result-page-dto-open-api-equipment-list-dto.js +15 -0
  39. package/dist/models/open-api-equipment-list-dto.d.ts +110 -0
  40. package/dist/models/open-api-equipment-list-dto.js +15 -0
  41. package/dist/models/page-dto-open-api-equipment-list-dto.d.ts +31 -0
  42. package/dist/models/page-dto-open-api-equipment-list-dto.js +15 -0
  43. package/dist/models/work-order-issue-type-enum.d.ts +1 -1
  44. package/dist/models/work-order-issue-type-enum.js +1 -1
  45. package/dist/models/work-order-search-dto.d.ts +7 -1
  46. package/models/index.ts +6 -0
  47. package/models/insurance-notice-vo.ts +60 -0
  48. package/models/insurance-work-order-issue-vo.ts +89 -0
  49. package/models/insurance-work-order-vo.ts +45 -0
  50. package/models/json-result-page-dto-open-api-equipment-list-dto.ts +72 -0
  51. package/models/open-api-equipment-list-dto.ts +122 -0
  52. package/models/page-dto-open-api-equipment-list-dto.ts +39 -0
  53. package/models/work-order-issue-type-enum.ts +1 -1
  54. package/models/work-order-search-dto.ts +7 -1
  55. package/package.json +1 -1
@@ -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,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,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,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,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,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,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,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 });
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * 违规大类
13
+ * 问题类型
14
14
  * @export
15
15
  * @enum {string}
16
16
  */
@@ -15,7 +15,7 @@
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.WorkOrderIssueTypeEnum = void 0;
17
17
  /**
18
- * 违规大类
18
+ * 问题类型
19
19
  * @export
20
20
  * @enum {string}
21
21
  */
@@ -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/models/index.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';
@@ -0,0 +1,60 @@
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 InsuranceNoticeVo
21
+ */
22
+ export interface InsuranceNoticeVo {
23
+ /**
24
+ * 园区编码
25
+ * @type {string}
26
+ * @memberof InsuranceNoticeVo
27
+ */
28
+ 'parkCode': string;
29
+ /**
30
+ * 考察时间
31
+ * @type {string}
32
+ * @memberof InsuranceNoticeVo
33
+ */
34
+ 'visitTime': string;
35
+ /**
36
+ * 考察内容
37
+ * @type {string}
38
+ * @memberof InsuranceNoticeVo
39
+ */
40
+ 'visitContent': string;
41
+ /**
42
+ * 联系人
43
+ * @type {string}
44
+ * @memberof InsuranceNoticeVo
45
+ */
46
+ 'contactName': string;
47
+ /**
48
+ * 联系电话
49
+ * @type {string}
50
+ * @memberof InsuranceNoticeVo
51
+ */
52
+ 'contactPhone': string;
53
+ /**
54
+ * 参与人员
55
+ * @type {Array<string>}
56
+ * @memberof InsuranceNoticeVo
57
+ */
58
+ 'participants': Array<string>;
59
+ }
60
+
@@ -0,0 +1,89 @@
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 { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
19
+
20
+ /**
21
+ * 问题
22
+ * @export
23
+ * @interface InsuranceWorkOrderIssueVo
24
+ */
25
+ export interface InsuranceWorkOrderIssueVo {
26
+ /**
27
+ * 问题单号
28
+ * @type {string}
29
+ * @memberof InsuranceWorkOrderIssueVo
30
+ */
31
+ 'issuesNo': string;
32
+ /**
33
+ * 问题时间
34
+ * @type {string}
35
+ * @memberof InsuranceWorkOrderIssueVo
36
+ */
37
+ 'issuesTime': string;
38
+ /**
39
+ *
40
+ * @type {WorkOrderIssueTypeEnum}
41
+ * @memberof InsuranceWorkOrderIssueVo
42
+ */
43
+ 'issueType': WorkOrderIssueTypeEnum;
44
+ /**
45
+ * 问题描述
46
+ * @type {string}
47
+ * @memberof InsuranceWorkOrderIssueVo
48
+ */
49
+ 'issuesDesc': string;
50
+ /**
51
+ * 问题设备ID
52
+ * @type {number}
53
+ * @memberof InsuranceWorkOrderIssueVo
54
+ */
55
+ 'issuesEquipmentId': number;
56
+ /**
57
+ * 问题空间ID
58
+ * @type {number}
59
+ * @memberof InsuranceWorkOrderIssueVo
60
+ */
61
+ 'issuesSpaceId': number;
62
+ /**
63
+ * 风险类别
64
+ * @type {string}
65
+ * @memberof InsuranceWorkOrderIssueVo
66
+ */
67
+ 'riskCategory': string;
68
+ /**
69
+ * 风险等级
70
+ * @type {string}
71
+ * @memberof InsuranceWorkOrderIssueVo
72
+ */
73
+ 'riskLevel': string;
74
+ /**
75
+ * 要求整改时间
76
+ * @type {string}
77
+ * @memberof InsuranceWorkOrderIssueVo
78
+ */
79
+ 'rectificationTime': string;
80
+ /**
81
+ * 隐患照片
82
+ * @type {Array<string>}
83
+ * @memberof InsuranceWorkOrderIssueVo
84
+ */
85
+ 'hazardPhotoUrls': Array<string>;
86
+ }
87
+
88
+
89
+
@@ -0,0 +1,45 @@
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 { InsuranceWorkOrderIssueVo } from './insurance-work-order-issue-vo';
19
+
20
+ /**
21
+ * 接收保险问题入参
22
+ * @export
23
+ * @interface InsuranceWorkOrderVo
24
+ */
25
+ export interface InsuranceWorkOrderVo {
26
+ /**
27
+ * 园区编码
28
+ * @type {string}
29
+ * @memberof InsuranceWorkOrderVo
30
+ */
31
+ 'parkCode': string;
32
+ /**
33
+ * 保险单号
34
+ * @type {string}
35
+ * @memberof InsuranceWorkOrderVo
36
+ */
37
+ 'insuranceNo': string;
38
+ /**
39
+ * 问题
40
+ * @type {Array<InsuranceWorkOrderIssueVo>}
41
+ * @memberof InsuranceWorkOrderVo
42
+ */
43
+ 'issues': Array<InsuranceWorkOrderIssueVo>;
44
+ }
45
+
@@ -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 { PageDtoOpenApiEquipmentListDto } from './page-dto-open-api-equipment-list-dto';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface JsonResultPageDtoOpenApiEquipmentListDto
27
+ */
28
+ export interface JsonResultPageDtoOpenApiEquipmentListDto {
29
+ /**
30
+ * 错误码,0:成功,其他:失败
31
+ * @type {number}
32
+ * @memberof JsonResultPageDtoOpenApiEquipmentListDto
33
+ */
34
+ 'code'?: number;
35
+ /**
36
+ * 错误消息
37
+ * @type {string}
38
+ * @memberof JsonResultPageDtoOpenApiEquipmentListDto
39
+ */
40
+ 'msg'?: string;
41
+ /**
42
+ * 错误堆栈
43
+ * @type {string}
44
+ * @memberof JsonResultPageDtoOpenApiEquipmentListDto
45
+ */
46
+ 'stacks'?: string;
47
+ /**
48
+ *
49
+ * @type {PageDtoOpenApiEquipmentListDto}
50
+ * @memberof JsonResultPageDtoOpenApiEquipmentListDto
51
+ */
52
+ 'data'?: PageDtoOpenApiEquipmentListDto | null;
53
+ /**
54
+ *
55
+ * @type {BaseErrorResult}
56
+ * @memberof JsonResultPageDtoOpenApiEquipmentListDto
57
+ */
58
+ 'error'?: BaseErrorResult | null;
59
+ /**
60
+ * 日志追踪ID
61
+ * @type {string}
62
+ * @memberof JsonResultPageDtoOpenApiEquipmentListDto
63
+ */
64
+ 'traceId'?: string | null;
65
+ /**
66
+ * requestId
67
+ * @type {string}
68
+ * @memberof JsonResultPageDtoOpenApiEquipmentListDto
69
+ */
70
+ 'requestId'?: string | null;
71
+ }
72
+