@gizone/rrs-client 4.2.0-alpha.364 → 4.2.0-alpha.365

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 (46) hide show
  1. package/.openapi-generator/FILES +3 -0
  2. package/dist/esm/models/exploration-work-order-info.d.ts +111 -0
  3. package/dist/esm/models/exploration-work-order-info.js +19 -0
  4. package/dist/esm/models/exploration-work-order-submit-vo.d.ts +36 -0
  5. package/dist/esm/models/exploration-work-order-submit-vo.js +14 -0
  6. package/dist/esm/models/exploration-work-order-type-enum.d.ts +20 -0
  7. package/dist/esm/models/exploration-work-order-type-enum.js +21 -0
  8. package/dist/esm/models/index.d.ts +3 -0
  9. package/dist/esm/models/index.js +3 -0
  10. package/dist/esm/models/insurance-work-order-issue-vo.d.ts +15 -8
  11. package/dist/esm/models/insurance-work-order-issue-vo.js +6 -1
  12. package/dist/esm/models/work-order-approval-vo.d.ts +6 -0
  13. package/dist/esm/models/work-order-ext-data.d.ts +7 -0
  14. package/dist/esm/models/work-order-internal-status-enum.d.ts +2 -0
  15. package/dist/esm/models/work-order-internal-status-enum.js +3 -1
  16. package/dist/esm/models/work-order-submit-vo.d.ts +7 -0
  17. package/dist/esm/models/work-order-type-enum.d.ts +1 -0
  18. package/dist/esm/models/work-order-type-enum.js +2 -1
  19. package/dist/models/exploration-work-order-info.d.ts +111 -0
  20. package/dist/models/exploration-work-order-info.js +22 -0
  21. package/dist/models/exploration-work-order-submit-vo.d.ts +36 -0
  22. package/dist/models/exploration-work-order-submit-vo.js +15 -0
  23. package/dist/models/exploration-work-order-type-enum.d.ts +20 -0
  24. package/dist/models/exploration-work-order-type-enum.js +24 -0
  25. package/dist/models/index.d.ts +3 -0
  26. package/dist/models/index.js +3 -0
  27. package/dist/models/insurance-work-order-issue-vo.d.ts +15 -8
  28. package/dist/models/insurance-work-order-issue-vo.js +7 -0
  29. package/dist/models/work-order-approval-vo.d.ts +6 -0
  30. package/dist/models/work-order-ext-data.d.ts +7 -0
  31. package/dist/models/work-order-internal-status-enum.d.ts +2 -0
  32. package/dist/models/work-order-internal-status-enum.js +3 -1
  33. package/dist/models/work-order-submit-vo.d.ts +7 -0
  34. package/dist/models/work-order-type-enum.d.ts +1 -0
  35. package/dist/models/work-order-type-enum.js +2 -1
  36. package/models/exploration-work-order-info.ts +124 -0
  37. package/models/exploration-work-order-submit-vo.ts +42 -0
  38. package/models/exploration-work-order-type-enum.ts +30 -0
  39. package/models/index.ts +3 -0
  40. package/models/insurance-work-order-issue-vo.ts +16 -8
  41. package/models/work-order-approval-vo.ts +6 -0
  42. package/models/work-order-ext-data.ts +9 -0
  43. package/models/work-order-internal-status-enum.ts +3 -1
  44. package/models/work-order-submit-vo.ts +9 -0
  45. package/models/work-order-type-enum.ts +2 -1
  46. package/package.json +1 -1
@@ -158,6 +158,9 @@ models/excel-import-result-dtomaintenance-standard-import-dto.ts
158
158
  models/excel-import-result-dtosurveillance-batch-import-template-dto.ts
159
159
  models/excel-import-result-dtosurveillance-settings-export-dto.ts
160
160
  models/excel-import-upload-to-redis-vo-space-add-excel-dto.ts
161
+ models/exploration-work-order-info.ts
162
+ models/exploration-work-order-submit-vo.ts
163
+ models/exploration-work-order-type-enum.ts
161
164
  models/file-dto.ts
162
165
  models/followup-work-order-dto.ts
163
166
  models/functional-area-enum.ts
@@ -0,0 +1,111 @@
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 { ExplorationWorkOrderTypeEnum } from './exploration-work-order-type-enum';
13
+ import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
14
+ /**
15
+ * 勘探工单
16
+ * @export
17
+ * @interface ExplorationWorkOrderInfo
18
+ */
19
+ export interface ExplorationWorkOrderInfo {
20
+ /**
21
+ * 问题单号
22
+ * @type {string}
23
+ * @memberof ExplorationWorkOrderInfo
24
+ */
25
+ 'issueNo'?: string;
26
+ /**
27
+ *
28
+ * @type {ExplorationWorkOrderTypeEnum}
29
+ * @memberof ExplorationWorkOrderInfo
30
+ */
31
+ 'explorationType'?: ExplorationWorkOrderTypeEnum;
32
+ /**
33
+ * 问题时间
34
+ * @type {string}
35
+ * @memberof ExplorationWorkOrderInfo
36
+ */
37
+ 'issueTime'?: string;
38
+ /**
39
+ *
40
+ * @type {WorkOrderIssueTypeEnum}
41
+ * @memberof ExplorationWorkOrderInfo
42
+ */
43
+ 'issueType'?: WorkOrderIssueTypeEnum;
44
+ /**
45
+ * 问题描述
46
+ * @type {string}
47
+ * @memberof ExplorationWorkOrderInfo
48
+ */
49
+ 'issueDesc'?: string;
50
+ /**
51
+ * 问题设备ID
52
+ * @type {number}
53
+ * @memberof ExplorationWorkOrderInfo
54
+ */
55
+ 'issueEquipmentId'?: number;
56
+ /**
57
+ * 问题空间ID
58
+ * @type {number}
59
+ * @memberof ExplorationWorkOrderInfo
60
+ */
61
+ 'issueSpaceId'?: number;
62
+ /**
63
+ * 风险类别
64
+ * @type {string}
65
+ * @memberof ExplorationWorkOrderInfo
66
+ */
67
+ 'riskCategory'?: string;
68
+ /**
69
+ * 勘探隐患等级
70
+ * @type {string}
71
+ * @memberof ExplorationWorkOrderInfo
72
+ */
73
+ 'hazardLevel'?: ExplorationWorkOrderInfoHazardLevelEnum;
74
+ /**
75
+ * 要求整改时间
76
+ * @type {string}
77
+ * @memberof ExplorationWorkOrderInfo
78
+ */
79
+ 'rectificationTime'?: string;
80
+ /**
81
+ * 隐患照片
82
+ * @type {Array<string>}
83
+ * @memberof ExplorationWorkOrderInfo
84
+ */
85
+ 'hazardPhotoUrls'?: Array<string>;
86
+ /**
87
+ * 原因描述
88
+ * @type {string}
89
+ * @memberof ExplorationWorkOrderInfo
90
+ */
91
+ 'reasonDescription'?: string;
92
+ /**
93
+ * 处理情况描述
94
+ * @type {string}
95
+ * @memberof ExplorationWorkOrderInfo
96
+ */
97
+ 'processDescription'?: string;
98
+ /**
99
+ * 整改图片
100
+ * @type {Array<string>}
101
+ * @memberof ExplorationWorkOrderInfo
102
+ */
103
+ 'rectificationImages'?: Array<string>;
104
+ }
105
+ export declare const ExplorationWorkOrderInfoHazardLevelEnum: {
106
+ readonly A: "A";
107
+ readonly B: "B";
108
+ readonly C: "C";
109
+ readonly D: "D";
110
+ };
111
+ export type ExplorationWorkOrderInfoHazardLevelEnum = typeof ExplorationWorkOrderInfoHazardLevelEnum[keyof typeof ExplorationWorkOrderInfoHazardLevelEnum];
@@ -0,0 +1,19 @@
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 const ExplorationWorkOrderInfoHazardLevelEnum = {
15
+ A: 'A',
16
+ B: 'B',
17
+ C: 'C',
18
+ D: 'D'
19
+ };
@@ -0,0 +1,36 @@
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 ExplorationWorkOrderSubmitVo
16
+ */
17
+ export interface ExplorationWorkOrderSubmitVo {
18
+ /**
19
+ * 原因描述
20
+ * @type {string}
21
+ * @memberof ExplorationWorkOrderSubmitVo
22
+ */
23
+ 'reasonDescription'?: string;
24
+ /**
25
+ * 处理情况描述
26
+ * @type {string}
27
+ * @memberof ExplorationWorkOrderSubmitVo
28
+ */
29
+ 'processDescription'?: string;
30
+ /**
31
+ * 整改图片
32
+ * @type {Array<string>}
33
+ * @memberof ExplorationWorkOrderSubmitVo
34
+ */
35
+ 'rectificationImages'?: Array<string>;
36
+ }
@@ -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,20 @@
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
+ * @enum {string}
16
+ */
17
+ export declare const ExplorationWorkOrderTypeEnum: {
18
+ readonly InsuranceExploration: "INSURANCE_EXPLORATION";
19
+ };
20
+ export type ExplorationWorkOrderTypeEnum = typeof ExplorationWorkOrderTypeEnum[keyof typeof ExplorationWorkOrderTypeEnum];
@@ -0,0 +1,21 @@
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
+ * @export
17
+ * @enum {string}
18
+ */
19
+ export const ExplorationWorkOrderTypeEnum = {
20
+ InsuranceExploration: 'INSURANCE_EXPLORATION'
21
+ };
@@ -115,6 +115,9 @@ 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-info';
119
+ export * from './exploration-work-order-submit-vo';
120
+ export * from './exploration-work-order-type-enum';
118
121
  export * from './file-dto';
119
122
  export * from './followup-work-order-dto';
120
123
  export * from './functional-area-enum';
@@ -115,6 +115,9 @@ 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-info';
119
+ export * from './exploration-work-order-submit-vo';
120
+ export * from './exploration-work-order-type-enum';
118
121
  export * from './file-dto';
119
122
  export * from './followup-work-order-dto';
120
123
  export * from './functional-area-enum';
@@ -21,13 +21,13 @@ export interface InsuranceWorkOrderIssueVo {
21
21
  * @type {string}
22
22
  * @memberof InsuranceWorkOrderIssueVo
23
23
  */
24
- 'issuesNo': string;
24
+ 'issueNo': string;
25
25
  /**
26
26
  * 问题时间
27
27
  * @type {string}
28
28
  * @memberof InsuranceWorkOrderIssueVo
29
29
  */
30
- 'issuesTime': string;
30
+ 'issueTime': string;
31
31
  /**
32
32
  *
33
33
  * @type {WorkOrderIssueTypeEnum}
@@ -39,31 +39,31 @@ export interface InsuranceWorkOrderIssueVo {
39
39
  * @type {string}
40
40
  * @memberof InsuranceWorkOrderIssueVo
41
41
  */
42
- 'issuesDesc': string;
42
+ 'issueDesc': string;
43
43
  /**
44
44
  * 问题设备ID
45
45
  * @type {number}
46
46
  * @memberof InsuranceWorkOrderIssueVo
47
47
  */
48
- 'issuesEquipmentId': number;
48
+ 'issueEquipmentId': number;
49
49
  /**
50
50
  * 问题空间ID
51
51
  * @type {number}
52
52
  * @memberof InsuranceWorkOrderIssueVo
53
53
  */
54
- 'issuesSpaceId': number;
54
+ 'issueSpaceId': number;
55
55
  /**
56
56
  * 风险类别
57
57
  * @type {string}
58
58
  * @memberof InsuranceWorkOrderIssueVo
59
59
  */
60
- 'riskCategory': string;
60
+ 'riskCategory'?: string;
61
61
  /**
62
- * 风险等级
62
+ * 勘探隐患等级
63
63
  * @type {string}
64
64
  * @memberof InsuranceWorkOrderIssueVo
65
65
  */
66
- 'riskLevel': string;
66
+ 'hazardLevel': InsuranceWorkOrderIssueVoHazardLevelEnum;
67
67
  /**
68
68
  * 要求整改时间
69
69
  * @type {string}
@@ -77,3 +77,10 @@ export interface InsuranceWorkOrderIssueVo {
77
77
  */
78
78
  'hazardPhotoUrls': Array<string>;
79
79
  }
80
+ export declare const InsuranceWorkOrderIssueVoHazardLevelEnum: {
81
+ readonly A: "A";
82
+ readonly B: "B";
83
+ readonly C: "C";
84
+ readonly D: "D";
85
+ };
86
+ export type InsuranceWorkOrderIssueVoHazardLevelEnum = typeof InsuranceWorkOrderIssueVoHazardLevelEnum[keyof typeof InsuranceWorkOrderIssueVoHazardLevelEnum];
@@ -11,4 +11,9 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- export {};
14
+ export const InsuranceWorkOrderIssueVoHazardLevelEnum = {
15
+ A: 'A',
16
+ B: 'B',
17
+ C: 'C',
18
+ D: 'D'
19
+ };
@@ -21,4 +21,10 @@ export interface WorkOrderApprovalVo {
21
21
  * @memberof WorkOrderApprovalVo
22
22
  */
23
23
  'isApproved'?: boolean;
24
+ /**
25
+ * 拒绝原因
26
+ * @type {string}
27
+ * @memberof WorkOrderApprovalVo
28
+ */
29
+ 'rejectReason'?: string;
24
30
  }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { ExplorationWorkOrderInfo } from './exploration-work-order-info';
12
13
  import type { MonitoringCoverageAlertInfo } from './monitoring-coverage-alert-info';
13
14
  import type { NetworkRepairInfo } from './network-repair-info';
14
15
  import type { OfflineAlertWorkOrderInfo } from './offline-alert-work-order-info';
@@ -43,4 +44,10 @@ export interface WorkOrderExtData {
43
44
  * @memberof WorkOrderExtData
44
45
  */
45
46
  'monitoringCoverageAlertInfo'?: MonitoringCoverageAlertInfo;
47
+ /**
48
+ *
49
+ * @type {ExplorationWorkOrderInfo}
50
+ * @memberof WorkOrderExtData
51
+ */
52
+ 'explorationWorkOrderInfo'?: ExplorationWorkOrderInfo;
46
53
  }
@@ -30,5 +30,7 @@ export declare const WorkOrderInternalStatusEnum: {
30
30
  readonly MonitoringCoverageAlertWorkOrderInProgressLevelOne: "MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_ONE";
31
31
  readonly MonitoringCoverageAlertWorkOrderInProgressLevelTwo: "MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_TWO";
32
32
  readonly MonitoringCoverageAlertWorkOrderInProgressLevelThree: "MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_THREE";
33
+ readonly ExplorationWorkOrderInProgressLevelOne: "EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_ONE";
34
+ readonly ExplorationWorkOrderInProgressLevelTwo: "EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_TWO";
33
35
  };
34
36
  export type WorkOrderInternalStatusEnum = typeof WorkOrderInternalStatusEnum[keyof typeof WorkOrderInternalStatusEnum];
@@ -31,5 +31,7 @@ export const WorkOrderInternalStatusEnum = {
31
31
  OfflineAlertWorkOrderInProgressLevelTwo: 'OFFLINE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_TWO',
32
32
  MonitoringCoverageAlertWorkOrderInProgressLevelOne: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
33
33
  MonitoringCoverageAlertWorkOrderInProgressLevelTwo: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_TWO',
34
- MonitoringCoverageAlertWorkOrderInProgressLevelThree: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_THREE'
34
+ MonitoringCoverageAlertWorkOrderInProgressLevelThree: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_THREE',
35
+ ExplorationWorkOrderInProgressLevelOne: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
36
+ ExplorationWorkOrderInProgressLevelTwo: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_TWO'
35
37
  };
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { ExplorationWorkOrderSubmitVo } from './exploration-work-order-submit-vo';
12
13
  import type { OfflineAlertSubmitVo } from './offline-alert-submit-vo';
13
14
  /**
14
15
  * 工单提交
@@ -22,4 +23,10 @@ export interface WorkOrderSubmitVo {
22
23
  * @memberof WorkOrderSubmitVo
23
24
  */
24
25
  'offlineAlertSubmit'?: OfflineAlertSubmitVo;
26
+ /**
27
+ *
28
+ * @type {ExplorationWorkOrderSubmitVo}
29
+ * @memberof WorkOrderSubmitVo
30
+ */
31
+ 'explorationWorkOrderSubmit'?: ExplorationWorkOrderSubmitVo;
25
32
  }
@@ -35,5 +35,6 @@ export declare const WorkOrderTypeEnum: {
35
35
  readonly OfflineAlertWorkOrder: "OFFLINE_ALERT_WORK_ORDER";
36
36
  readonly MonitoringCoverageAlertWorkOrder: "MONITORING_COVERAGE_ALERT_WORK_ORDER";
37
37
  readonly DisasterWarningWorkOrder: "DISASTER_WARNING_WORK_ORDER";
38
+ readonly ExplorationWorkOrder: "EXPLORATION_WORK_ORDER";
38
39
  };
39
40
  export type WorkOrderTypeEnum = typeof WorkOrderTypeEnum[keyof typeof WorkOrderTypeEnum];
@@ -36,5 +36,6 @@ export const WorkOrderTypeEnum = {
36
36
  ViolationWorkOrder: 'VIOLATION_WORK_ORDER',
37
37
  OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
38
38
  MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
39
- DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER'
39
+ DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER',
40
+ ExplorationWorkOrder: 'EXPLORATION_WORK_ORDER'
40
41
  };
@@ -0,0 +1,111 @@
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 { ExplorationWorkOrderTypeEnum } from './exploration-work-order-type-enum';
13
+ import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
14
+ /**
15
+ * 勘探工单
16
+ * @export
17
+ * @interface ExplorationWorkOrderInfo
18
+ */
19
+ export interface ExplorationWorkOrderInfo {
20
+ /**
21
+ * 问题单号
22
+ * @type {string}
23
+ * @memberof ExplorationWorkOrderInfo
24
+ */
25
+ 'issueNo'?: string;
26
+ /**
27
+ *
28
+ * @type {ExplorationWorkOrderTypeEnum}
29
+ * @memberof ExplorationWorkOrderInfo
30
+ */
31
+ 'explorationType'?: ExplorationWorkOrderTypeEnum;
32
+ /**
33
+ * 问题时间
34
+ * @type {string}
35
+ * @memberof ExplorationWorkOrderInfo
36
+ */
37
+ 'issueTime'?: string;
38
+ /**
39
+ *
40
+ * @type {WorkOrderIssueTypeEnum}
41
+ * @memberof ExplorationWorkOrderInfo
42
+ */
43
+ 'issueType'?: WorkOrderIssueTypeEnum;
44
+ /**
45
+ * 问题描述
46
+ * @type {string}
47
+ * @memberof ExplorationWorkOrderInfo
48
+ */
49
+ 'issueDesc'?: string;
50
+ /**
51
+ * 问题设备ID
52
+ * @type {number}
53
+ * @memberof ExplorationWorkOrderInfo
54
+ */
55
+ 'issueEquipmentId'?: number;
56
+ /**
57
+ * 问题空间ID
58
+ * @type {number}
59
+ * @memberof ExplorationWorkOrderInfo
60
+ */
61
+ 'issueSpaceId'?: number;
62
+ /**
63
+ * 风险类别
64
+ * @type {string}
65
+ * @memberof ExplorationWorkOrderInfo
66
+ */
67
+ 'riskCategory'?: string;
68
+ /**
69
+ * 勘探隐患等级
70
+ * @type {string}
71
+ * @memberof ExplorationWorkOrderInfo
72
+ */
73
+ 'hazardLevel'?: ExplorationWorkOrderInfoHazardLevelEnum;
74
+ /**
75
+ * 要求整改时间
76
+ * @type {string}
77
+ * @memberof ExplorationWorkOrderInfo
78
+ */
79
+ 'rectificationTime'?: string;
80
+ /**
81
+ * 隐患照片
82
+ * @type {Array<string>}
83
+ * @memberof ExplorationWorkOrderInfo
84
+ */
85
+ 'hazardPhotoUrls'?: Array<string>;
86
+ /**
87
+ * 原因描述
88
+ * @type {string}
89
+ * @memberof ExplorationWorkOrderInfo
90
+ */
91
+ 'reasonDescription'?: string;
92
+ /**
93
+ * 处理情况描述
94
+ * @type {string}
95
+ * @memberof ExplorationWorkOrderInfo
96
+ */
97
+ 'processDescription'?: string;
98
+ /**
99
+ * 整改图片
100
+ * @type {Array<string>}
101
+ * @memberof ExplorationWorkOrderInfo
102
+ */
103
+ 'rectificationImages'?: Array<string>;
104
+ }
105
+ export declare const ExplorationWorkOrderInfoHazardLevelEnum: {
106
+ readonly A: "A";
107
+ readonly B: "B";
108
+ readonly C: "C";
109
+ readonly D: "D";
110
+ };
111
+ export type ExplorationWorkOrderInfoHazardLevelEnum = typeof ExplorationWorkOrderInfoHazardLevelEnum[keyof typeof ExplorationWorkOrderInfoHazardLevelEnum];
@@ -0,0 +1,22 @@
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.ExplorationWorkOrderInfoHazardLevelEnum = void 0;
17
+ exports.ExplorationWorkOrderInfoHazardLevelEnum = {
18
+ A: 'A',
19
+ B: 'B',
20
+ C: 'C',
21
+ D: 'D'
22
+ };
@@ -0,0 +1,36 @@
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 ExplorationWorkOrderSubmitVo
16
+ */
17
+ export interface ExplorationWorkOrderSubmitVo {
18
+ /**
19
+ * 原因描述
20
+ * @type {string}
21
+ * @memberof ExplorationWorkOrderSubmitVo
22
+ */
23
+ 'reasonDescription'?: string;
24
+ /**
25
+ * 处理情况描述
26
+ * @type {string}
27
+ * @memberof ExplorationWorkOrderSubmitVo
28
+ */
29
+ 'processDescription'?: string;
30
+ /**
31
+ * 整改图片
32
+ * @type {Array<string>}
33
+ * @memberof ExplorationWorkOrderSubmitVo
34
+ */
35
+ 'rectificationImages'?: Array<string>;
36
+ }
@@ -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,20 @@
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
+ * @enum {string}
16
+ */
17
+ export declare const ExplorationWorkOrderTypeEnum: {
18
+ readonly InsuranceExploration: "INSURANCE_EXPLORATION";
19
+ };
20
+ export type ExplorationWorkOrderTypeEnum = typeof ExplorationWorkOrderTypeEnum[keyof typeof ExplorationWorkOrderTypeEnum];
@@ -0,0 +1,24 @@
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.ExplorationWorkOrderTypeEnum = void 0;
17
+ /**
18
+ * 勘探类型
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.ExplorationWorkOrderTypeEnum = {
23
+ InsuranceExploration: 'INSURANCE_EXPLORATION'
24
+ };
@@ -115,6 +115,9 @@ 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-info';
119
+ export * from './exploration-work-order-submit-vo';
120
+ export * from './exploration-work-order-type-enum';
118
121
  export * from './file-dto';
119
122
  export * from './followup-work-order-dto';
120
123
  export * from './functional-area-enum';
@@ -131,6 +131,9 @@ __exportStar(require("./excel-import-result-dtomaintenance-standard-import-dto")
131
131
  __exportStar(require("./excel-import-result-dtosurveillance-batch-import-template-dto"), exports);
132
132
  __exportStar(require("./excel-import-result-dtosurveillance-settings-export-dto"), exports);
133
133
  __exportStar(require("./excel-import-upload-to-redis-vo-space-add-excel-dto"), exports);
134
+ __exportStar(require("./exploration-work-order-info"), exports);
135
+ __exportStar(require("./exploration-work-order-submit-vo"), exports);
136
+ __exportStar(require("./exploration-work-order-type-enum"), exports);
134
137
  __exportStar(require("./file-dto"), exports);
135
138
  __exportStar(require("./followup-work-order-dto"), exports);
136
139
  __exportStar(require("./functional-area-enum"), exports);
@@ -21,13 +21,13 @@ export interface InsuranceWorkOrderIssueVo {
21
21
  * @type {string}
22
22
  * @memberof InsuranceWorkOrderIssueVo
23
23
  */
24
- 'issuesNo': string;
24
+ 'issueNo': string;
25
25
  /**
26
26
  * 问题时间
27
27
  * @type {string}
28
28
  * @memberof InsuranceWorkOrderIssueVo
29
29
  */
30
- 'issuesTime': string;
30
+ 'issueTime': string;
31
31
  /**
32
32
  *
33
33
  * @type {WorkOrderIssueTypeEnum}
@@ -39,31 +39,31 @@ export interface InsuranceWorkOrderIssueVo {
39
39
  * @type {string}
40
40
  * @memberof InsuranceWorkOrderIssueVo
41
41
  */
42
- 'issuesDesc': string;
42
+ 'issueDesc': string;
43
43
  /**
44
44
  * 问题设备ID
45
45
  * @type {number}
46
46
  * @memberof InsuranceWorkOrderIssueVo
47
47
  */
48
- 'issuesEquipmentId': number;
48
+ 'issueEquipmentId': number;
49
49
  /**
50
50
  * 问题空间ID
51
51
  * @type {number}
52
52
  * @memberof InsuranceWorkOrderIssueVo
53
53
  */
54
- 'issuesSpaceId': number;
54
+ 'issueSpaceId': number;
55
55
  /**
56
56
  * 风险类别
57
57
  * @type {string}
58
58
  * @memberof InsuranceWorkOrderIssueVo
59
59
  */
60
- 'riskCategory': string;
60
+ 'riskCategory'?: string;
61
61
  /**
62
- * 风险等级
62
+ * 勘探隐患等级
63
63
  * @type {string}
64
64
  * @memberof InsuranceWorkOrderIssueVo
65
65
  */
66
- 'riskLevel': string;
66
+ 'hazardLevel': InsuranceWorkOrderIssueVoHazardLevelEnum;
67
67
  /**
68
68
  * 要求整改时间
69
69
  * @type {string}
@@ -77,3 +77,10 @@ export interface InsuranceWorkOrderIssueVo {
77
77
  */
78
78
  'hazardPhotoUrls': Array<string>;
79
79
  }
80
+ export declare const InsuranceWorkOrderIssueVoHazardLevelEnum: {
81
+ readonly A: "A";
82
+ readonly B: "B";
83
+ readonly C: "C";
84
+ readonly D: "D";
85
+ };
86
+ export type InsuranceWorkOrderIssueVoHazardLevelEnum = typeof InsuranceWorkOrderIssueVoHazardLevelEnum[keyof typeof InsuranceWorkOrderIssueVoHazardLevelEnum];
@@ -13,3 +13,10 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.InsuranceWorkOrderIssueVoHazardLevelEnum = void 0;
17
+ exports.InsuranceWorkOrderIssueVoHazardLevelEnum = {
18
+ A: 'A',
19
+ B: 'B',
20
+ C: 'C',
21
+ D: 'D'
22
+ };
@@ -21,4 +21,10 @@ export interface WorkOrderApprovalVo {
21
21
  * @memberof WorkOrderApprovalVo
22
22
  */
23
23
  'isApproved'?: boolean;
24
+ /**
25
+ * 拒绝原因
26
+ * @type {string}
27
+ * @memberof WorkOrderApprovalVo
28
+ */
29
+ 'rejectReason'?: string;
24
30
  }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { ExplorationWorkOrderInfo } from './exploration-work-order-info';
12
13
  import type { MonitoringCoverageAlertInfo } from './monitoring-coverage-alert-info';
13
14
  import type { NetworkRepairInfo } from './network-repair-info';
14
15
  import type { OfflineAlertWorkOrderInfo } from './offline-alert-work-order-info';
@@ -43,4 +44,10 @@ export interface WorkOrderExtData {
43
44
  * @memberof WorkOrderExtData
44
45
  */
45
46
  'monitoringCoverageAlertInfo'?: MonitoringCoverageAlertInfo;
47
+ /**
48
+ *
49
+ * @type {ExplorationWorkOrderInfo}
50
+ * @memberof WorkOrderExtData
51
+ */
52
+ 'explorationWorkOrderInfo'?: ExplorationWorkOrderInfo;
46
53
  }
@@ -30,5 +30,7 @@ export declare const WorkOrderInternalStatusEnum: {
30
30
  readonly MonitoringCoverageAlertWorkOrderInProgressLevelOne: "MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_ONE";
31
31
  readonly MonitoringCoverageAlertWorkOrderInProgressLevelTwo: "MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_TWO";
32
32
  readonly MonitoringCoverageAlertWorkOrderInProgressLevelThree: "MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_THREE";
33
+ readonly ExplorationWorkOrderInProgressLevelOne: "EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_ONE";
34
+ readonly ExplorationWorkOrderInProgressLevelTwo: "EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_TWO";
33
35
  };
34
36
  export type WorkOrderInternalStatusEnum = typeof WorkOrderInternalStatusEnum[keyof typeof WorkOrderInternalStatusEnum];
@@ -34,5 +34,7 @@ exports.WorkOrderInternalStatusEnum = {
34
34
  OfflineAlertWorkOrderInProgressLevelTwo: 'OFFLINE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_TWO',
35
35
  MonitoringCoverageAlertWorkOrderInProgressLevelOne: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
36
36
  MonitoringCoverageAlertWorkOrderInProgressLevelTwo: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_TWO',
37
- MonitoringCoverageAlertWorkOrderInProgressLevelThree: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_THREE'
37
+ MonitoringCoverageAlertWorkOrderInProgressLevelThree: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_THREE',
38
+ ExplorationWorkOrderInProgressLevelOne: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
39
+ ExplorationWorkOrderInProgressLevelTwo: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_TWO'
38
40
  };
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { ExplorationWorkOrderSubmitVo } from './exploration-work-order-submit-vo';
12
13
  import type { OfflineAlertSubmitVo } from './offline-alert-submit-vo';
13
14
  /**
14
15
  * 工单提交
@@ -22,4 +23,10 @@ export interface WorkOrderSubmitVo {
22
23
  * @memberof WorkOrderSubmitVo
23
24
  */
24
25
  'offlineAlertSubmit'?: OfflineAlertSubmitVo;
26
+ /**
27
+ *
28
+ * @type {ExplorationWorkOrderSubmitVo}
29
+ * @memberof WorkOrderSubmitVo
30
+ */
31
+ 'explorationWorkOrderSubmit'?: ExplorationWorkOrderSubmitVo;
25
32
  }
@@ -35,5 +35,6 @@ export declare const WorkOrderTypeEnum: {
35
35
  readonly OfflineAlertWorkOrder: "OFFLINE_ALERT_WORK_ORDER";
36
36
  readonly MonitoringCoverageAlertWorkOrder: "MONITORING_COVERAGE_ALERT_WORK_ORDER";
37
37
  readonly DisasterWarningWorkOrder: "DISASTER_WARNING_WORK_ORDER";
38
+ readonly ExplorationWorkOrder: "EXPLORATION_WORK_ORDER";
38
39
  };
39
40
  export type WorkOrderTypeEnum = typeof WorkOrderTypeEnum[keyof typeof WorkOrderTypeEnum];
@@ -39,5 +39,6 @@ exports.WorkOrderTypeEnum = {
39
39
  ViolationWorkOrder: 'VIOLATION_WORK_ORDER',
40
40
  OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
41
41
  MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
42
- DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER'
42
+ DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER',
43
+ ExplorationWorkOrder: 'EXPLORATION_WORK_ORDER'
43
44
  };
@@ -0,0 +1,124 @@
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 ExplorationWorkOrderInfo
27
+ */
28
+ export interface ExplorationWorkOrderInfo {
29
+ /**
30
+ * 问题单号
31
+ * @type {string}
32
+ * @memberof ExplorationWorkOrderInfo
33
+ */
34
+ 'issueNo'?: string;
35
+ /**
36
+ *
37
+ * @type {ExplorationWorkOrderTypeEnum}
38
+ * @memberof ExplorationWorkOrderInfo
39
+ */
40
+ 'explorationType'?: ExplorationWorkOrderTypeEnum;
41
+ /**
42
+ * 问题时间
43
+ * @type {string}
44
+ * @memberof ExplorationWorkOrderInfo
45
+ */
46
+ 'issueTime'?: string;
47
+ /**
48
+ *
49
+ * @type {WorkOrderIssueTypeEnum}
50
+ * @memberof ExplorationWorkOrderInfo
51
+ */
52
+ 'issueType'?: WorkOrderIssueTypeEnum;
53
+ /**
54
+ * 问题描述
55
+ * @type {string}
56
+ * @memberof ExplorationWorkOrderInfo
57
+ */
58
+ 'issueDesc'?: string;
59
+ /**
60
+ * 问题设备ID
61
+ * @type {number}
62
+ * @memberof ExplorationWorkOrderInfo
63
+ */
64
+ 'issueEquipmentId'?: number;
65
+ /**
66
+ * 问题空间ID
67
+ * @type {number}
68
+ * @memberof ExplorationWorkOrderInfo
69
+ */
70
+ 'issueSpaceId'?: number;
71
+ /**
72
+ * 风险类别
73
+ * @type {string}
74
+ * @memberof ExplorationWorkOrderInfo
75
+ */
76
+ 'riskCategory'?: string;
77
+ /**
78
+ * 勘探隐患等级
79
+ * @type {string}
80
+ * @memberof ExplorationWorkOrderInfo
81
+ */
82
+ 'hazardLevel'?: ExplorationWorkOrderInfoHazardLevelEnum;
83
+ /**
84
+ * 要求整改时间
85
+ * @type {string}
86
+ * @memberof ExplorationWorkOrderInfo
87
+ */
88
+ 'rectificationTime'?: string;
89
+ /**
90
+ * 隐患照片
91
+ * @type {Array<string>}
92
+ * @memberof ExplorationWorkOrderInfo
93
+ */
94
+ 'hazardPhotoUrls'?: Array<string>;
95
+ /**
96
+ * 原因描述
97
+ * @type {string}
98
+ * @memberof ExplorationWorkOrderInfo
99
+ */
100
+ 'reasonDescription'?: string;
101
+ /**
102
+ * 处理情况描述
103
+ * @type {string}
104
+ * @memberof ExplorationWorkOrderInfo
105
+ */
106
+ 'processDescription'?: string;
107
+ /**
108
+ * 整改图片
109
+ * @type {Array<string>}
110
+ * @memberof ExplorationWorkOrderInfo
111
+ */
112
+ 'rectificationImages'?: Array<string>;
113
+ }
114
+
115
+ export const ExplorationWorkOrderInfoHazardLevelEnum = {
116
+ A: 'A',
117
+ B: 'B',
118
+ C: 'C',
119
+ D: 'D'
120
+ } as const;
121
+
122
+ export type ExplorationWorkOrderInfoHazardLevelEnum = typeof ExplorationWorkOrderInfoHazardLevelEnum[keyof typeof ExplorationWorkOrderInfoHazardLevelEnum];
123
+
124
+
@@ -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 ExplorationWorkOrderSubmitVo
21
+ */
22
+ export interface ExplorationWorkOrderSubmitVo {
23
+ /**
24
+ * 原因描述
25
+ * @type {string}
26
+ * @memberof ExplorationWorkOrderSubmitVo
27
+ */
28
+ 'reasonDescription'?: string;
29
+ /**
30
+ * 处理情况描述
31
+ * @type {string}
32
+ * @memberof ExplorationWorkOrderSubmitVo
33
+ */
34
+ 'processDescription'?: string;
35
+ /**
36
+ * 整改图片
37
+ * @type {Array<string>}
38
+ * @memberof ExplorationWorkOrderSubmitVo
39
+ */
40
+ 'rectificationImages'?: Array<string>;
41
+ }
42
+
@@ -0,0 +1,30 @@
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
+ * @enum {string}
21
+ */
22
+
23
+ export const ExplorationWorkOrderTypeEnum = {
24
+ InsuranceExploration: 'INSURANCE_EXPLORATION'
25
+ } as const;
26
+
27
+ export type ExplorationWorkOrderTypeEnum = typeof ExplorationWorkOrderTypeEnum[keyof typeof ExplorationWorkOrderTypeEnum];
28
+
29
+
30
+
package/models/index.ts CHANGED
@@ -115,6 +115,9 @@ 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-info';
119
+ export * from './exploration-work-order-submit-vo';
120
+ export * from './exploration-work-order-type-enum';
118
121
  export * from './file-dto';
119
122
  export * from './followup-work-order-dto';
120
123
  export * from './functional-area-enum';
@@ -28,13 +28,13 @@ export interface InsuranceWorkOrderIssueVo {
28
28
  * @type {string}
29
29
  * @memberof InsuranceWorkOrderIssueVo
30
30
  */
31
- 'issuesNo': string;
31
+ 'issueNo': string;
32
32
  /**
33
33
  * 问题时间
34
34
  * @type {string}
35
35
  * @memberof InsuranceWorkOrderIssueVo
36
36
  */
37
- 'issuesTime': string;
37
+ 'issueTime': string;
38
38
  /**
39
39
  *
40
40
  * @type {WorkOrderIssueTypeEnum}
@@ -46,31 +46,31 @@ export interface InsuranceWorkOrderIssueVo {
46
46
  * @type {string}
47
47
  * @memberof InsuranceWorkOrderIssueVo
48
48
  */
49
- 'issuesDesc': string;
49
+ 'issueDesc': string;
50
50
  /**
51
51
  * 问题设备ID
52
52
  * @type {number}
53
53
  * @memberof InsuranceWorkOrderIssueVo
54
54
  */
55
- 'issuesEquipmentId': number;
55
+ 'issueEquipmentId': number;
56
56
  /**
57
57
  * 问题空间ID
58
58
  * @type {number}
59
59
  * @memberof InsuranceWorkOrderIssueVo
60
60
  */
61
- 'issuesSpaceId': number;
61
+ 'issueSpaceId': number;
62
62
  /**
63
63
  * 风险类别
64
64
  * @type {string}
65
65
  * @memberof InsuranceWorkOrderIssueVo
66
66
  */
67
- 'riskCategory': string;
67
+ 'riskCategory'?: string;
68
68
  /**
69
- * 风险等级
69
+ * 勘探隐患等级
70
70
  * @type {string}
71
71
  * @memberof InsuranceWorkOrderIssueVo
72
72
  */
73
- 'riskLevel': string;
73
+ 'hazardLevel': InsuranceWorkOrderIssueVoHazardLevelEnum;
74
74
  /**
75
75
  * 要求整改时间
76
76
  * @type {string}
@@ -85,5 +85,13 @@ export interface InsuranceWorkOrderIssueVo {
85
85
  'hazardPhotoUrls': Array<string>;
86
86
  }
87
87
 
88
+ export const InsuranceWorkOrderIssueVoHazardLevelEnum = {
89
+ A: 'A',
90
+ B: 'B',
91
+ C: 'C',
92
+ D: 'D'
93
+ } as const;
94
+
95
+ export type InsuranceWorkOrderIssueVoHazardLevelEnum = typeof InsuranceWorkOrderIssueVoHazardLevelEnum[keyof typeof InsuranceWorkOrderIssueVoHazardLevelEnum];
88
96
 
89
97
 
@@ -26,5 +26,11 @@ export interface WorkOrderApprovalVo {
26
26
  * @memberof WorkOrderApprovalVo
27
27
  */
28
28
  'isApproved'?: boolean;
29
+ /**
30
+ * 拒绝原因
31
+ * @type {string}
32
+ * @memberof WorkOrderApprovalVo
33
+ */
34
+ 'rejectReason'?: string;
29
35
  }
30
36
 
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { ExplorationWorkOrderInfo } from './exploration-work-order-info';
16
19
  // May contain unused imports in some cases
17
20
  // @ts-ignore
18
21
  import type { MonitoringCoverageAlertInfo } from './monitoring-coverage-alert-info';
@@ -56,5 +59,11 @@ export interface WorkOrderExtData {
56
59
  * @memberof WorkOrderExtData
57
60
  */
58
61
  'monitoringCoverageAlertInfo'?: MonitoringCoverageAlertInfo;
62
+ /**
63
+ *
64
+ * @type {ExplorationWorkOrderInfo}
65
+ * @memberof WorkOrderExtData
66
+ */
67
+ 'explorationWorkOrderInfo'?: ExplorationWorkOrderInfo;
59
68
  }
60
69
 
@@ -35,7 +35,9 @@ export const WorkOrderInternalStatusEnum = {
35
35
  OfflineAlertWorkOrderInProgressLevelTwo: 'OFFLINE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_TWO',
36
36
  MonitoringCoverageAlertWorkOrderInProgressLevelOne: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
37
37
  MonitoringCoverageAlertWorkOrderInProgressLevelTwo: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_TWO',
38
- MonitoringCoverageAlertWorkOrderInProgressLevelThree: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_THREE'
38
+ MonitoringCoverageAlertWorkOrderInProgressLevelThree: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_THREE',
39
+ ExplorationWorkOrderInProgressLevelOne: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
40
+ ExplorationWorkOrderInProgressLevelTwo: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_TWO'
39
41
  } as const;
40
42
 
41
43
  export type WorkOrderInternalStatusEnum = typeof WorkOrderInternalStatusEnum[keyof typeof WorkOrderInternalStatusEnum];
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { ExplorationWorkOrderSubmitVo } from './exploration-work-order-submit-vo';
16
19
  // May contain unused imports in some cases
17
20
  // @ts-ignore
18
21
  import type { OfflineAlertSubmitVo } from './offline-alert-submit-vo';
@@ -29,5 +32,11 @@ export interface WorkOrderSubmitVo {
29
32
  * @memberof WorkOrderSubmitVo
30
33
  */
31
34
  'offlineAlertSubmit'?: OfflineAlertSubmitVo;
35
+ /**
36
+ *
37
+ * @type {ExplorationWorkOrderSubmitVo}
38
+ * @memberof WorkOrderSubmitVo
39
+ */
40
+ 'explorationWorkOrderSubmit'?: ExplorationWorkOrderSubmitVo;
32
41
  }
33
42
 
@@ -40,7 +40,8 @@ export const WorkOrderTypeEnum = {
40
40
  ViolationWorkOrder: 'VIOLATION_WORK_ORDER',
41
41
  OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
42
42
  MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
43
- DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER'
43
+ DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER',
44
+ ExplorationWorkOrder: 'EXPLORATION_WORK_ORDER'
44
45
  } as const;
45
46
 
46
47
  export type WorkOrderTypeEnum = typeof WorkOrderTypeEnum[keyof typeof WorkOrderTypeEnum];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.2.0-alpha.364",
3
+ "version": "4.2.0-alpha.365",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {