@gizone/rrs-client 4.2.5-alpha.394 → 4.2.5-alpha.396

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 (86) hide show
  1. package/.openapi-generator/FILES +3 -0
  2. package/apis/work-order-api.ts +329 -137
  3. package/dist/apis/work-order-api.d.ts +181 -79
  4. package/dist/apis/work-order-api.js +254 -110
  5. package/dist/esm/apis/work-order-api.d.ts +181 -79
  6. package/dist/esm/apis/work-order-api.js +253 -109
  7. package/dist/esm/models/exploration-work-order-add-vo.d.ts +123 -0
  8. package/dist/esm/models/exploration-work-order-add-vo.js +19 -0
  9. package/dist/esm/models/exploration-work-order-details-dto.d.ts +12 -0
  10. package/dist/esm/models/exploration-work-order-details-dto.js +5 -1
  11. package/dist/esm/models/exploration-work-order-info.d.ts +6 -0
  12. package/dist/esm/models/index.d.ts +3 -0
  13. package/dist/esm/models/index.js +3 -0
  14. package/dist/esm/models/json-result-work-order-spot-check-dto.d.ts +62 -0
  15. package/dist/esm/models/json-result-work-order-spot-check-dto.js +14 -0
  16. package/dist/esm/models/monitoring-coverage-alert-work-order-details-dto.d.ts +12 -0
  17. package/dist/esm/models/monitoring-coverage-alert-work-order-details-dto.js +5 -1
  18. package/dist/esm/models/network-monitor-repair-details-dto.d.ts +12 -0
  19. package/dist/esm/models/network-monitor-repair-details-dto.js +5 -1
  20. package/dist/esm/models/offline-alert-work-order-details-dto.d.ts +12 -0
  21. package/dist/esm/models/offline-alert-work-order-details-dto.js +5 -1
  22. package/dist/esm/models/period-detail-resp.d.ts +12 -36
  23. package/dist/esm/models/period-detail-resp.js +5 -5
  24. package/dist/esm/models/sys-user.d.ts +4 -4
  25. package/dist/esm/models/violation-work-order-details-dto.d.ts +12 -0
  26. package/dist/esm/models/violation-work-order-details-dto.js +5 -1
  27. package/dist/esm/models/work-order-add-vo.d.ts +6 -0
  28. package/dist/esm/models/work-order-detail-dto.d.ts +11 -35
  29. package/dist/esm/models/work-order-detail-dto.js +4 -4
  30. package/dist/esm/models/work-order-search-dto.d.ts +11 -11
  31. package/dist/esm/models/work-order-search-dto.js +4 -4
  32. package/dist/esm/models/work-order-source-enum.d.ts +1 -0
  33. package/dist/esm/models/work-order-source-enum.js +2 -1
  34. package/dist/esm/models/work-order-spot-check-dto.d.ts +79 -0
  35. package/dist/esm/models/work-order-spot-check-dto.js +18 -0
  36. package/dist/esm/models/work-order-spot-check-vo.d.ts +20 -14
  37. package/dist/esm/models/work-order-spot-check-vo.js +5 -1
  38. package/dist/models/exploration-work-order-add-vo.d.ts +123 -0
  39. package/dist/models/exploration-work-order-add-vo.js +22 -0
  40. package/dist/models/exploration-work-order-details-dto.d.ts +12 -0
  41. package/dist/models/exploration-work-order-details-dto.js +6 -0
  42. package/dist/models/exploration-work-order-info.d.ts +6 -0
  43. package/dist/models/index.d.ts +3 -0
  44. package/dist/models/index.js +3 -0
  45. package/dist/models/json-result-work-order-spot-check-dto.d.ts +62 -0
  46. package/dist/models/json-result-work-order-spot-check-dto.js +15 -0
  47. package/dist/models/monitoring-coverage-alert-work-order-details-dto.d.ts +12 -0
  48. package/dist/models/monitoring-coverage-alert-work-order-details-dto.js +6 -0
  49. package/dist/models/network-monitor-repair-details-dto.d.ts +12 -0
  50. package/dist/models/network-monitor-repair-details-dto.js +6 -0
  51. package/dist/models/offline-alert-work-order-details-dto.d.ts +12 -0
  52. package/dist/models/offline-alert-work-order-details-dto.js +6 -0
  53. package/dist/models/period-detail-resp.d.ts +12 -36
  54. package/dist/models/period-detail-resp.js +6 -6
  55. package/dist/models/sys-user.d.ts +4 -4
  56. package/dist/models/violation-work-order-details-dto.d.ts +12 -0
  57. package/dist/models/violation-work-order-details-dto.js +6 -0
  58. package/dist/models/work-order-add-vo.d.ts +6 -0
  59. package/dist/models/work-order-detail-dto.d.ts +11 -35
  60. package/dist/models/work-order-detail-dto.js +5 -5
  61. package/dist/models/work-order-search-dto.d.ts +11 -11
  62. package/dist/models/work-order-search-dto.js +5 -5
  63. package/dist/models/work-order-source-enum.d.ts +1 -0
  64. package/dist/models/work-order-source-enum.js +2 -1
  65. package/dist/models/work-order-spot-check-dto.d.ts +79 -0
  66. package/dist/models/work-order-spot-check-dto.js +21 -0
  67. package/dist/models/work-order-spot-check-vo.d.ts +20 -14
  68. package/dist/models/work-order-spot-check-vo.js +6 -0
  69. package/models/exploration-work-order-add-vo.ts +136 -0
  70. package/models/exploration-work-order-details-dto.ts +13 -0
  71. package/models/exploration-work-order-info.ts +6 -0
  72. package/models/index.ts +3 -0
  73. package/models/json-result-work-order-spot-check-dto.ts +72 -0
  74. package/models/monitoring-coverage-alert-work-order-details-dto.ts +13 -0
  75. package/models/network-monitor-repair-details-dto.ts +13 -0
  76. package/models/offline-alert-work-order-details-dto.ts +13 -0
  77. package/models/period-detail-resp.ts +13 -37
  78. package/models/sys-user.ts +4 -4
  79. package/models/violation-work-order-details-dto.ts +13 -0
  80. package/models/work-order-add-vo.ts +6 -0
  81. package/models/work-order-detail-dto.ts +11 -35
  82. package/models/work-order-search-dto.ts +11 -11
  83. package/models/work-order-source-enum.ts +2 -1
  84. package/models/work-order-spot-check-dto.ts +90 -0
  85. package/models/work-order-spot-check-vo.ts +23 -14
  86. package/package.json +1 -1
@@ -13,12 +13,7 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.PeriodDetailRespPlanTypeEnum = exports.PeriodDetailRespSamplingResultsEnum = void 0;
17
- exports.PeriodDetailRespSamplingResultsEnum = {
18
- Zero: 'ZERO',
19
- One: 'ONE',
20
- Two: 'TWO'
21
- };
16
+ exports.PeriodDetailRespSpotCheckStatusEnum = exports.PeriodDetailRespPlanTypeEnum = void 0;
22
17
  exports.PeriodDetailRespPlanTypeEnum = {
23
18
  PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
24
19
  PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
@@ -26,3 +21,8 @@ exports.PeriodDetailRespPlanTypeEnum = {
26
21
  PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
27
22
  PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
28
23
  };
24
+ exports.PeriodDetailRespSpotCheckStatusEnum = {
25
+ NotCheck: 'NOT_CHECK',
26
+ Pass: 'PASS',
27
+ Fail: 'FAIL'
28
+ };
@@ -377,14 +377,14 @@ export interface SysUser {
377
377
  'sourceUserId'?: string;
378
378
  /**
379
379
  *
380
- * @type {string}
380
+ * @type {number}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cid'?: string;
383
+ 'cuserId'?: number;
384
384
  /**
385
385
  *
386
- * @type {number}
386
+ * @type {string}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cuserId'?: number;
389
+ 'cid'?: string;
390
390
  }
@@ -153,4 +153,16 @@ export interface ViolationWorkOrderDetailsDto {
153
153
  * @memberof ViolationWorkOrderDetailsDto
154
154
  */
155
155
  'isTimeOut'?: boolean;
156
+ /**
157
+ * 抽检结果
158
+ * @type {string}
159
+ * @memberof ViolationWorkOrderDetailsDto
160
+ */
161
+ 'spotCheckStatus'?: ViolationWorkOrderDetailsDtoSpotCheckStatusEnum;
156
162
  }
163
+ export declare const ViolationWorkOrderDetailsDtoSpotCheckStatusEnum: {
164
+ readonly NotCheck: "NOT_CHECK";
165
+ readonly Pass: "PASS";
166
+ readonly Fail: "FAIL";
167
+ };
168
+ export type ViolationWorkOrderDetailsDtoSpotCheckStatusEnum = typeof ViolationWorkOrderDetailsDtoSpotCheckStatusEnum[keyof typeof ViolationWorkOrderDetailsDtoSpotCheckStatusEnum];
@@ -13,3 +13,9 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.ViolationWorkOrderDetailsDtoSpotCheckStatusEnum = void 0;
17
+ exports.ViolationWorkOrderDetailsDtoSpotCheckStatusEnum = {
18
+ NotCheck: 'NOT_CHECK',
19
+ Pass: 'PASS',
20
+ Fail: 'FAIL'
21
+ };
@@ -108,4 +108,10 @@ export interface WorkOrderAddVo {
108
108
  * @memberof WorkOrderAddVo
109
109
  */
110
110
  'centerAttribute': ParkCenterAttributeEnum;
111
+ /**
112
+ * 源ID
113
+ * @type {number}
114
+ * @memberof WorkOrderAddVo
115
+ */
116
+ 'sourceId'?: number;
111
117
  }
@@ -143,30 +143,6 @@ export interface WorkOrderDetailDTO {
143
143
  * @memberof WorkOrderDetailDTO
144
144
  */
145
145
  'processingTime'?: string;
146
- /**
147
- * 抽检结果
148
- * @type {string}
149
- * @memberof WorkOrderDetailDTO
150
- */
151
- 'samplingResults'?: WorkOrderDetailDTOSamplingResultsEnum;
152
- /**
153
- * 抽检时间
154
- * @type {string}
155
- * @memberof WorkOrderDetailDTO
156
- */
157
- 'samplingTime'?: string;
158
- /**
159
- * 抽检图片
160
- * @type {string}
161
- * @memberof WorkOrderDetailDTO
162
- */
163
- 'samplingImage'?: string;
164
- /**
165
- * 抽检人
166
- * @type {string}
167
- * @memberof WorkOrderDetailDTO
168
- */
169
- 'samplingUserName'?: string;
170
146
  /**
171
147
  * 处理照片
172
148
  * @type {Array<string>}
@@ -209,12 +185,6 @@ export interface WorkOrderDetailDTO {
209
185
  * @memberof WorkOrderDetailDTO
210
186
  */
211
187
  'workOrderCommentEntityList'?: Array<WorkOrderCommentDTO>;
212
- /**
213
- * 抽检备注
214
- * @type {string}
215
- * @memberof WorkOrderDetailDTO
216
- */
217
- 'samplingRemarks'?: string;
218
188
  /**
219
189
  * 发起人id
220
190
  * @type {number}
@@ -347,10 +317,16 @@ export interface WorkOrderDetailDTO {
347
317
  * @memberof WorkOrderDetailDTO
348
318
  */
349
319
  'equipments'?: Array<Equipment>;
320
+ /**
321
+ * 抽检结果
322
+ * @type {string}
323
+ * @memberof WorkOrderDetailDTO
324
+ */
325
+ 'spotCheckStatus'?: WorkOrderDetailDTOSpotCheckStatusEnum;
350
326
  }
351
- export declare const WorkOrderDetailDTOSamplingResultsEnum: {
352
- readonly Zero: "ZERO";
353
- readonly One: "ONE";
354
- readonly Two: "TWO";
327
+ export declare const WorkOrderDetailDTOSpotCheckStatusEnum: {
328
+ readonly NotCheck: "NOT_CHECK";
329
+ readonly Pass: "PASS";
330
+ readonly Fail: "FAIL";
355
331
  };
356
- export type WorkOrderDetailDTOSamplingResultsEnum = typeof WorkOrderDetailDTOSamplingResultsEnum[keyof typeof WorkOrderDetailDTOSamplingResultsEnum];
332
+ export type WorkOrderDetailDTOSpotCheckStatusEnum = typeof WorkOrderDetailDTOSpotCheckStatusEnum[keyof typeof WorkOrderDetailDTOSpotCheckStatusEnum];
@@ -13,9 +13,9 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.WorkOrderDetailDTOSamplingResultsEnum = void 0;
17
- exports.WorkOrderDetailDTOSamplingResultsEnum = {
18
- Zero: 'ZERO',
19
- One: 'ONE',
20
- Two: 'TWO'
16
+ exports.WorkOrderDetailDTOSpotCheckStatusEnum = void 0;
17
+ exports.WorkOrderDetailDTOSpotCheckStatusEnum = {
18
+ NotCheck: 'NOT_CHECK',
19
+ Pass: 'PASS',
20
+ Fail: 'FAIL'
21
21
  };
@@ -88,12 +88,6 @@ export interface WorkOrderSearchDTO {
88
88
  * @memberof WorkOrderSearchDTO
89
89
  */
90
90
  'handlerContact'?: string;
91
- /**
92
- * 抽检结果
93
- * @type {string}
94
- * @memberof WorkOrderSearchDTO
95
- */
96
- 'samplingResults'?: WorkOrderSearchDTOSamplingResultsEnum;
97
91
  /**
98
92
  * 空间名称
99
93
  * @type {string}
@@ -154,10 +148,16 @@ export interface WorkOrderSearchDTO {
154
148
  * @memberof WorkOrderSearchDTO
155
149
  */
156
150
  'isTimeOut'?: boolean;
151
+ /**
152
+ * 抽检结果
153
+ * @type {string}
154
+ * @memberof WorkOrderSearchDTO
155
+ */
156
+ 'spotCheckStatus'?: WorkOrderSearchDTOSpotCheckStatusEnum;
157
157
  }
158
- export declare const WorkOrderSearchDTOSamplingResultsEnum: {
159
- readonly Zero: "ZERO";
160
- readonly One: "ONE";
161
- readonly Two: "TWO";
158
+ export declare const WorkOrderSearchDTOSpotCheckStatusEnum: {
159
+ readonly NotCheck: "NOT_CHECK";
160
+ readonly Pass: "PASS";
161
+ readonly Fail: "FAIL";
162
162
  };
163
- export type WorkOrderSearchDTOSamplingResultsEnum = typeof WorkOrderSearchDTOSamplingResultsEnum[keyof typeof WorkOrderSearchDTOSamplingResultsEnum];
163
+ export type WorkOrderSearchDTOSpotCheckStatusEnum = typeof WorkOrderSearchDTOSpotCheckStatusEnum[keyof typeof WorkOrderSearchDTOSpotCheckStatusEnum];
@@ -13,9 +13,9 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.WorkOrderSearchDTOSamplingResultsEnum = void 0;
17
- exports.WorkOrderSearchDTOSamplingResultsEnum = {
18
- Zero: 'ZERO',
19
- One: 'ONE',
20
- Two: 'TWO'
16
+ exports.WorkOrderSearchDTOSpotCheckStatusEnum = void 0;
17
+ exports.WorkOrderSearchDTOSpotCheckStatusEnum = {
18
+ NotCheck: 'NOT_CHECK',
19
+ Pass: 'PASS',
20
+ Fail: 'FAIL'
21
21
  };
@@ -24,5 +24,6 @@ export declare const WorkOrderSourceEnum: {
24
24
  readonly OfflineTransferWorkOrder: "OFFLINE_TRANSFER_WORK_ORDER";
25
25
  readonly HkAiAlertTransferWorkOrder: "HK_AI_ALERT_TRANSFER_WORK_ORDER";
26
26
  readonly DisasterWarningTransferWorkOrder: "DISASTER_WARNING_TRANSFER_WORK_ORDER";
27
+ readonly SpotCheckTransferWorkOrder: "SPOT_CHECK_TRANSFER_WORK_ORDER";
27
28
  };
28
29
  export type WorkOrderSourceEnum = typeof WorkOrderSourceEnum[keyof typeof WorkOrderSourceEnum];
@@ -28,5 +28,6 @@ exports.WorkOrderSourceEnum = {
28
28
  MaintenanceTransferWorkOrder: 'MAINTENANCE_TRANSFER_WORK_ORDER',
29
29
  OfflineTransferWorkOrder: 'OFFLINE_TRANSFER_WORK_ORDER',
30
30
  HkAiAlertTransferWorkOrder: 'HK_AI_ALERT_TRANSFER_WORK_ORDER',
31
- DisasterWarningTransferWorkOrder: 'DISASTER_WARNING_TRANSFER_WORK_ORDER'
31
+ DisasterWarningTransferWorkOrder: 'DISASTER_WARNING_TRANSFER_WORK_ORDER',
32
+ SpotCheckTransferWorkOrder: 'SPOT_CHECK_TRANSFER_WORK_ORDER'
32
33
  };
@@ -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 { FollowupWorkOrderDTO } from './followup-work-order-dto';
13
+ /**
14
+ * 工单抽检数据传输对象
15
+ * @export
16
+ * @interface WorkOrderSpotCheckDto
17
+ */
18
+ export interface WorkOrderSpotCheckDto {
19
+ /**
20
+ * 抽检的工单ID
21
+ * @type {number}
22
+ * @memberof WorkOrderSpotCheckDto
23
+ */
24
+ 'workOrderId'?: number;
25
+ /**
26
+ * 抽检结果
27
+ * @type {string}
28
+ * @memberof WorkOrderSpotCheckDto
29
+ */
30
+ 'checkStatus'?: WorkOrderSpotCheckDtoCheckStatusEnum;
31
+ /**
32
+ * 抽检时间
33
+ * @type {string}
34
+ * @memberof WorkOrderSpotCheckDto
35
+ */
36
+ 'checkTime'?: string;
37
+ /**
38
+ * 抽检图片
39
+ * @type {Array<string>}
40
+ * @memberof WorkOrderSpotCheckDto
41
+ */
42
+ 'checkImages'?: Array<string>;
43
+ /**
44
+ * 抽检人姓名
45
+ * @type {string}
46
+ * @memberof WorkOrderSpotCheckDto
47
+ */
48
+ 'checkUserName'?: string;
49
+ /**
50
+ * 抽检人ID
51
+ * @type {number}
52
+ * @memberof WorkOrderSpotCheckDto
53
+ */
54
+ 'checkUserId'?: number;
55
+ /**
56
+ * 抽检备注
57
+ * @type {string}
58
+ * @memberof WorkOrderSpotCheckDto
59
+ */
60
+ 'checkRemarks'?: string;
61
+ /**
62
+ * 抽检项ID
63
+ * @type {Array<string>}
64
+ * @memberof WorkOrderSpotCheckDto
65
+ */
66
+ 'inspectionItemIds'?: Array<string>;
67
+ /**
68
+ *
69
+ * @type {FollowupWorkOrderDTO}
70
+ * @memberof WorkOrderSpotCheckDto
71
+ */
72
+ 'followupWorkOrder'?: FollowupWorkOrderDTO;
73
+ }
74
+ export declare const WorkOrderSpotCheckDtoCheckStatusEnum: {
75
+ readonly NotCheck: "NOT_CHECK";
76
+ readonly Pass: "PASS";
77
+ readonly Fail: "FAIL";
78
+ };
79
+ export type WorkOrderSpotCheckDtoCheckStatusEnum = typeof WorkOrderSpotCheckDtoCheckStatusEnum[keyof typeof WorkOrderSpotCheckDtoCheckStatusEnum];
@@ -0,0 +1,21 @@
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 });
16
+ exports.WorkOrderSpotCheckDtoCheckStatusEnum = void 0;
17
+ exports.WorkOrderSpotCheckDtoCheckStatusEnum = {
18
+ NotCheck: 'NOT_CHECK',
19
+ Pass: 'PASS',
20
+ Fail: 'FAIL'
21
+ };
@@ -17,32 +17,38 @@
17
17
  export interface WorkOrderSpotCheckVo {
18
18
  /**
19
19
  * 抽检状态
20
- * @type {number}
20
+ * @type {string}
21
21
  * @memberof WorkOrderSpotCheckVo
22
22
  */
23
- 'samplingResults': number;
23
+ 'spotCheckStatus': WorkOrderSpotCheckVoSpotCheckStatusEnum;
24
24
  /**
25
- * 抽检图片
26
- * @type {string}
25
+ * 抽检项ID
26
+ * @type {Array<number>}
27
27
  * @memberof WorkOrderSpotCheckVo
28
28
  */
29
- 'samplingImage': string;
29
+ 'inspectionItemIds'?: Array<number>;
30
30
  /**
31
- * 抽检备注
32
- * @type {string}
31
+ * 抽检图片
32
+ * @type {Array<string>}
33
33
  * @memberof WorkOrderSpotCheckVo
34
34
  */
35
- 'samplingRemarks'?: string;
35
+ 'checkImages'?: Array<string>;
36
36
  /**
37
- * 是否生成新工单 1 是 0 否
38
- * @type {number}
37
+ * 抽检备注
38
+ * @type {string}
39
39
  * @memberof WorkOrderSpotCheckVo
40
40
  */
41
- 'isNewWork'?: number;
41
+ 'checkRemarks'?: string;
42
42
  /**
43
- *
44
- * @type {number}
43
+ * 是否生成新工单
44
+ * @type {boolean}
45
45
  * @memberof WorkOrderSpotCheckVo
46
46
  */
47
- 'id'?: number;
47
+ 'isNewWork': boolean;
48
48
  }
49
+ export declare const WorkOrderSpotCheckVoSpotCheckStatusEnum: {
50
+ readonly NotCheck: "NOT_CHECK";
51
+ readonly Pass: "PASS";
52
+ readonly Fail: "FAIL";
53
+ };
54
+ export type WorkOrderSpotCheckVoSpotCheckStatusEnum = typeof WorkOrderSpotCheckVoSpotCheckStatusEnum[keyof typeof WorkOrderSpotCheckVoSpotCheckStatusEnum];
@@ -13,3 +13,9 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.WorkOrderSpotCheckVoSpotCheckStatusEnum = void 0;
17
+ exports.WorkOrderSpotCheckVoSpotCheckStatusEnum = {
18
+ NotCheck: 'NOT_CHECK',
19
+ Pass: 'PASS',
20
+ Fail: 'FAIL'
21
+ };
@@ -0,0 +1,136 @@
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 { ExplorationWorkOrderTypeEnum } from './exploration-work-order-type-enum';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
22
+
23
+ /**
24
+ * 新增勘探工单
25
+ * @export
26
+ * @interface ExplorationWorkOrderAddVo
27
+ */
28
+ export interface ExplorationWorkOrderAddVo {
29
+ /**
30
+ * 园区ID
31
+ * @type {number}
32
+ * @memberof ExplorationWorkOrderAddVo
33
+ */
34
+ 'parkId'?: number;
35
+ /**
36
+ * 保险单号
37
+ * @type {string}
38
+ * @memberof ExplorationWorkOrderAddVo
39
+ */
40
+ 'insuranceNo'?: string;
41
+ /**
42
+ * 问题单号
43
+ * @type {string}
44
+ * @memberof ExplorationWorkOrderAddVo
45
+ */
46
+ 'issueNo'?: string;
47
+ /**
48
+ *
49
+ * @type {ExplorationWorkOrderTypeEnum}
50
+ * @memberof ExplorationWorkOrderAddVo
51
+ */
52
+ 'explorationType': ExplorationWorkOrderTypeEnum;
53
+ /**
54
+ * 问题时间
55
+ * @type {string}
56
+ * @memberof ExplorationWorkOrderAddVo
57
+ */
58
+ 'issueTime'?: string;
59
+ /**
60
+ *
61
+ * @type {WorkOrderIssueTypeEnum}
62
+ * @memberof ExplorationWorkOrderAddVo
63
+ */
64
+ 'issueType': WorkOrderIssueTypeEnum;
65
+ /**
66
+ * 问题描述
67
+ * @type {string}
68
+ * @memberof ExplorationWorkOrderAddVo
69
+ */
70
+ 'issueDesc': string;
71
+ /**
72
+ * 问题设备ID
73
+ * @type {number}
74
+ * @memberof ExplorationWorkOrderAddVo
75
+ */
76
+ 'issueEquipmentId': number;
77
+ /**
78
+ * 问题空间ID
79
+ * @type {number}
80
+ * @memberof ExplorationWorkOrderAddVo
81
+ */
82
+ 'issueSpaceId': number;
83
+ /**
84
+ * 风险类别
85
+ * @type {string}
86
+ * @memberof ExplorationWorkOrderAddVo
87
+ */
88
+ 'riskCategory'?: string;
89
+ /**
90
+ * 勘探隐患等级
91
+ * @type {string}
92
+ * @memberof ExplorationWorkOrderAddVo
93
+ */
94
+ 'hazardLevel': ExplorationWorkOrderAddVoHazardLevelEnum;
95
+ /**
96
+ * 要求整改时间
97
+ * @type {string}
98
+ * @memberof ExplorationWorkOrderAddVo
99
+ */
100
+ 'rectificationTime'?: string;
101
+ /**
102
+ * 隐患照片
103
+ * @type {Array<string>}
104
+ * @memberof ExplorationWorkOrderAddVo
105
+ */
106
+ 'hazardPhotoUrls': Array<string>;
107
+ /**
108
+ * 预计执行时间(分钟)
109
+ * @type {number}
110
+ * @memberof ExplorationWorkOrderAddVo
111
+ */
112
+ 'estimateExecutionTime'?: number;
113
+ /**
114
+ * 执行部门
115
+ * @type {Array<number>}
116
+ * @memberof ExplorationWorkOrderAddVo
117
+ */
118
+ 'deptIds': Array<number>;
119
+ /**
120
+ * 执行人
121
+ * @type {number}
122
+ * @memberof ExplorationWorkOrderAddVo
123
+ */
124
+ 'handlerUserId'?: number;
125
+ }
126
+
127
+ export const ExplorationWorkOrderAddVoHazardLevelEnum = {
128
+ A: 'A',
129
+ B: 'B',
130
+ C: 'C',
131
+ D: 'D'
132
+ } as const;
133
+
134
+ export type ExplorationWorkOrderAddVoHazardLevelEnum = typeof ExplorationWorkOrderAddVoHazardLevelEnum[keyof typeof ExplorationWorkOrderAddVoHazardLevelEnum];
135
+
136
+
@@ -143,7 +143,20 @@ export interface ExplorationWorkOrderDetailsDto {
143
143
  * @memberof ExplorationWorkOrderDetailsDto
144
144
  */
145
145
  'equipments'?: Array<WorkOrderEquipmentDto>;
146
+ /**
147
+ * 抽检结果
148
+ * @type {string}
149
+ * @memberof ExplorationWorkOrderDetailsDto
150
+ */
151
+ 'spotCheckStatus'?: ExplorationWorkOrderDetailsDtoSpotCheckStatusEnum;
146
152
  }
147
153
 
154
+ export const ExplorationWorkOrderDetailsDtoSpotCheckStatusEnum = {
155
+ NotCheck: 'NOT_CHECK',
156
+ Pass: 'PASS',
157
+ Fail: 'FAIL'
158
+ } as const;
159
+
160
+ export type ExplorationWorkOrderDetailsDtoSpotCheckStatusEnum = typeof ExplorationWorkOrderDetailsDtoSpotCheckStatusEnum[keyof typeof ExplorationWorkOrderDetailsDtoSpotCheckStatusEnum];
148
161
 
149
162
 
@@ -26,6 +26,12 @@ import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
26
26
  * @interface ExplorationWorkOrderInfo
27
27
  */
28
28
  export interface ExplorationWorkOrderInfo {
29
+ /**
30
+ * 保险单号
31
+ * @type {string}
32
+ * @memberof ExplorationWorkOrderInfo
33
+ */
34
+ 'insuranceNo'?: string;
29
35
  /**
30
36
  * 问题单号
31
37
  * @type {string}
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-add-vo';
118
119
  export * from './exploration-work-order-details-dto';
119
120
  export * from './exploration-work-order-info';
120
121
  export * from './exploration-work-order-submit-vo';
@@ -255,6 +256,7 @@ export * from './json-result-void';
255
256
  export * from './json-result-work-order-dept-settings-entity';
256
257
  export * from './json-result-work-order-detail-dto';
257
258
  export * from './json-result-work-order-issue-type-settings-entity';
259
+ export * from './json-result-work-order-spot-check-dto';
258
260
  export * from './login-body';
259
261
  export * from './login-type-enum';
260
262
  export * from './maintenance-history-dto';
@@ -466,6 +468,7 @@ export * from './work-order-settings-type-enum';
466
468
  export * from './work-order-source-enum';
467
469
  export * from './work-order-space-dto';
468
470
  export * from './work-order-sponsor-dto';
471
+ export * from './work-order-spot-check-dto';
469
472
  export * from './work-order-spot-check-vo';
470
473
  export * from './work-order-staging-data-vo';
471
474
  export * from './work-order-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 { WorkOrderSpotCheckDto } from './work-order-spot-check-dto';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface JsonResultWorkOrderSpotCheckDto
27
+ */
28
+ export interface JsonResultWorkOrderSpotCheckDto {
29
+ /**
30
+ * 错误码,0:成功,其他:失败
31
+ * @type {number}
32
+ * @memberof JsonResultWorkOrderSpotCheckDto
33
+ */
34
+ 'code'?: number;
35
+ /**
36
+ * 错误消息
37
+ * @type {string}
38
+ * @memberof JsonResultWorkOrderSpotCheckDto
39
+ */
40
+ 'msg'?: string;
41
+ /**
42
+ * 错误堆栈
43
+ * @type {string}
44
+ * @memberof JsonResultWorkOrderSpotCheckDto
45
+ */
46
+ 'stacks'?: string;
47
+ /**
48
+ *
49
+ * @type {WorkOrderSpotCheckDto}
50
+ * @memberof JsonResultWorkOrderSpotCheckDto
51
+ */
52
+ 'data'?: WorkOrderSpotCheckDto | null;
53
+ /**
54
+ *
55
+ * @type {BaseErrorResult}
56
+ * @memberof JsonResultWorkOrderSpotCheckDto
57
+ */
58
+ 'error'?: BaseErrorResult | null;
59
+ /**
60
+ * 日志追踪ID
61
+ * @type {string}
62
+ * @memberof JsonResultWorkOrderSpotCheckDto
63
+ */
64
+ 'traceId'?: string | null;
65
+ /**
66
+ * requestId
67
+ * @type {string}
68
+ * @memberof JsonResultWorkOrderSpotCheckDto
69
+ */
70
+ 'requestId'?: string | null;
71
+ }
72
+