@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
@@ -0,0 +1,123 @@
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 ExplorationWorkOrderAddVo
18
+ */
19
+ export interface ExplorationWorkOrderAddVo {
20
+ /**
21
+ * 园区ID
22
+ * @type {number}
23
+ * @memberof ExplorationWorkOrderAddVo
24
+ */
25
+ 'parkId'?: number;
26
+ /**
27
+ * 保险单号
28
+ * @type {string}
29
+ * @memberof ExplorationWorkOrderAddVo
30
+ */
31
+ 'insuranceNo'?: string;
32
+ /**
33
+ * 问题单号
34
+ * @type {string}
35
+ * @memberof ExplorationWorkOrderAddVo
36
+ */
37
+ 'issueNo'?: string;
38
+ /**
39
+ *
40
+ * @type {ExplorationWorkOrderTypeEnum}
41
+ * @memberof ExplorationWorkOrderAddVo
42
+ */
43
+ 'explorationType': ExplorationWorkOrderTypeEnum;
44
+ /**
45
+ * 问题时间
46
+ * @type {string}
47
+ * @memberof ExplorationWorkOrderAddVo
48
+ */
49
+ 'issueTime'?: string;
50
+ /**
51
+ *
52
+ * @type {WorkOrderIssueTypeEnum}
53
+ * @memberof ExplorationWorkOrderAddVo
54
+ */
55
+ 'issueType': WorkOrderIssueTypeEnum;
56
+ /**
57
+ * 问题描述
58
+ * @type {string}
59
+ * @memberof ExplorationWorkOrderAddVo
60
+ */
61
+ 'issueDesc': string;
62
+ /**
63
+ * 问题设备ID
64
+ * @type {number}
65
+ * @memberof ExplorationWorkOrderAddVo
66
+ */
67
+ 'issueEquipmentId': number;
68
+ /**
69
+ * 问题空间ID
70
+ * @type {number}
71
+ * @memberof ExplorationWorkOrderAddVo
72
+ */
73
+ 'issueSpaceId': number;
74
+ /**
75
+ * 风险类别
76
+ * @type {string}
77
+ * @memberof ExplorationWorkOrderAddVo
78
+ */
79
+ 'riskCategory'?: string;
80
+ /**
81
+ * 勘探隐患等级
82
+ * @type {string}
83
+ * @memberof ExplorationWorkOrderAddVo
84
+ */
85
+ 'hazardLevel': ExplorationWorkOrderAddVoHazardLevelEnum;
86
+ /**
87
+ * 要求整改时间
88
+ * @type {string}
89
+ * @memberof ExplorationWorkOrderAddVo
90
+ */
91
+ 'rectificationTime'?: string;
92
+ /**
93
+ * 隐患照片
94
+ * @type {Array<string>}
95
+ * @memberof ExplorationWorkOrderAddVo
96
+ */
97
+ 'hazardPhotoUrls': Array<string>;
98
+ /**
99
+ * 预计执行时间(分钟)
100
+ * @type {number}
101
+ * @memberof ExplorationWorkOrderAddVo
102
+ */
103
+ 'estimateExecutionTime'?: number;
104
+ /**
105
+ * 执行部门
106
+ * @type {Array<number>}
107
+ * @memberof ExplorationWorkOrderAddVo
108
+ */
109
+ 'deptIds': Array<number>;
110
+ /**
111
+ * 执行人
112
+ * @type {number}
113
+ * @memberof ExplorationWorkOrderAddVo
114
+ */
115
+ 'handlerUserId'?: number;
116
+ }
117
+ export declare const ExplorationWorkOrderAddVoHazardLevelEnum: {
118
+ readonly A: "A";
119
+ readonly B: "B";
120
+ readonly C: "C";
121
+ readonly D: "D";
122
+ };
123
+ export type ExplorationWorkOrderAddVoHazardLevelEnum = typeof ExplorationWorkOrderAddVoHazardLevelEnum[keyof typeof ExplorationWorkOrderAddVoHazardLevelEnum];
@@ -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 ExplorationWorkOrderAddVoHazardLevelEnum = {
15
+ A: 'A',
16
+ B: 'B',
17
+ C: 'C',
18
+ D: 'D'
19
+ };
@@ -120,4 +120,16 @@ export interface ExplorationWorkOrderDetailsDto {
120
120
  * @memberof ExplorationWorkOrderDetailsDto
121
121
  */
122
122
  'equipments'?: Array<WorkOrderEquipmentDto>;
123
+ /**
124
+ * 抽检结果
125
+ * @type {string}
126
+ * @memberof ExplorationWorkOrderDetailsDto
127
+ */
128
+ 'spotCheckStatus'?: ExplorationWorkOrderDetailsDtoSpotCheckStatusEnum;
123
129
  }
130
+ export declare const ExplorationWorkOrderDetailsDtoSpotCheckStatusEnum: {
131
+ readonly NotCheck: "NOT_CHECK";
132
+ readonly Pass: "PASS";
133
+ readonly Fail: "FAIL";
134
+ };
135
+ export type ExplorationWorkOrderDetailsDtoSpotCheckStatusEnum = typeof ExplorationWorkOrderDetailsDtoSpotCheckStatusEnum[keyof typeof ExplorationWorkOrderDetailsDtoSpotCheckStatusEnum];
@@ -11,4 +11,8 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- export {};
14
+ export const ExplorationWorkOrderDetailsDtoSpotCheckStatusEnum = {
15
+ NotCheck: 'NOT_CHECK',
16
+ Pass: 'PASS',
17
+ Fail: 'FAIL'
18
+ };
@@ -17,6 +17,12 @@ import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
17
17
  * @interface ExplorationWorkOrderInfo
18
18
  */
19
19
  export interface ExplorationWorkOrderInfo {
20
+ /**
21
+ * 保险单号
22
+ * @type {string}
23
+ * @memberof ExplorationWorkOrderInfo
24
+ */
25
+ 'insuranceNo'?: string;
20
26
  /**
21
27
  * 问题单号
22
28
  * @type {string}
@@ -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';
@@ -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,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 { WorkOrderSpotCheckDto } from './work-order-spot-check-dto';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultWorkOrderSpotCheckDto
18
+ */
19
+ export interface JsonResultWorkOrderSpotCheckDto {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultWorkOrderSpotCheckDto
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultWorkOrderSpotCheckDto
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultWorkOrderSpotCheckDto
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ *
40
+ * @type {WorkOrderSpotCheckDto}
41
+ * @memberof JsonResultWorkOrderSpotCheckDto
42
+ */
43
+ 'data'?: WorkOrderSpotCheckDto | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultWorkOrderSpotCheckDto
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultWorkOrderSpotCheckDto
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultWorkOrderSpotCheckDto
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 {};
@@ -106,4 +106,16 @@ export interface MonitoringCoverageAlertWorkOrderDetailsDto {
106
106
  * @memberof MonitoringCoverageAlertWorkOrderDetailsDto
107
107
  */
108
108
  'isTimeOut'?: boolean;
109
+ /**
110
+ * 抽检结果
111
+ * @type {string}
112
+ * @memberof MonitoringCoverageAlertWorkOrderDetailsDto
113
+ */
114
+ 'spotCheckStatus'?: MonitoringCoverageAlertWorkOrderDetailsDtoSpotCheckStatusEnum;
109
115
  }
116
+ export declare const MonitoringCoverageAlertWorkOrderDetailsDtoSpotCheckStatusEnum: {
117
+ readonly NotCheck: "NOT_CHECK";
118
+ readonly Pass: "PASS";
119
+ readonly Fail: "FAIL";
120
+ };
121
+ export type MonitoringCoverageAlertWorkOrderDetailsDtoSpotCheckStatusEnum = typeof MonitoringCoverageAlertWorkOrderDetailsDtoSpotCheckStatusEnum[keyof typeof MonitoringCoverageAlertWorkOrderDetailsDtoSpotCheckStatusEnum];
@@ -11,4 +11,8 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- export {};
14
+ export const MonitoringCoverageAlertWorkOrderDetailsDtoSpotCheckStatusEnum = {
15
+ NotCheck: 'NOT_CHECK',
16
+ Pass: 'PASS',
17
+ Fail: 'FAIL'
18
+ };
@@ -179,4 +179,16 @@ export interface NetworkMonitorRepairDetailsDto {
179
179
  * @memberof NetworkMonitorRepairDetailsDto
180
180
  */
181
181
  'isTimeOut'?: boolean;
182
+ /**
183
+ * 抽检结果
184
+ * @type {string}
185
+ * @memberof NetworkMonitorRepairDetailsDto
186
+ */
187
+ 'spotCheckStatus'?: NetworkMonitorRepairDetailsDtoSpotCheckStatusEnum;
182
188
  }
189
+ export declare const NetworkMonitorRepairDetailsDtoSpotCheckStatusEnum: {
190
+ readonly NotCheck: "NOT_CHECK";
191
+ readonly Pass: "PASS";
192
+ readonly Fail: "FAIL";
193
+ };
194
+ export type NetworkMonitorRepairDetailsDtoSpotCheckStatusEnum = typeof NetworkMonitorRepairDetailsDtoSpotCheckStatusEnum[keyof typeof NetworkMonitorRepairDetailsDtoSpotCheckStatusEnum];
@@ -11,4 +11,8 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- export {};
14
+ export const NetworkMonitorRepairDetailsDtoSpotCheckStatusEnum = {
15
+ NotCheck: 'NOT_CHECK',
16
+ Pass: 'PASS',
17
+ Fail: 'FAIL'
18
+ };
@@ -120,4 +120,16 @@ export interface OfflineAlertWorkOrderDetailsDto {
120
120
  * @memberof OfflineAlertWorkOrderDetailsDto
121
121
  */
122
122
  'isTimeOut'?: boolean;
123
+ /**
124
+ * 抽检结果
125
+ * @type {string}
126
+ * @memberof OfflineAlertWorkOrderDetailsDto
127
+ */
128
+ 'spotCheckStatus'?: OfflineAlertWorkOrderDetailsDtoSpotCheckStatusEnum;
123
129
  }
130
+ export declare const OfflineAlertWorkOrderDetailsDtoSpotCheckStatusEnum: {
131
+ readonly NotCheck: "NOT_CHECK";
132
+ readonly Pass: "PASS";
133
+ readonly Fail: "FAIL";
134
+ };
135
+ export type OfflineAlertWorkOrderDetailsDtoSpotCheckStatusEnum = typeof OfflineAlertWorkOrderDetailsDtoSpotCheckStatusEnum[keyof typeof OfflineAlertWorkOrderDetailsDtoSpotCheckStatusEnum];
@@ -11,4 +11,8 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- export {};
14
+ export const OfflineAlertWorkOrderDetailsDtoSpotCheckStatusEnum = {
15
+ NotCheck: 'NOT_CHECK',
16
+ Pass: 'PASS',
17
+ Fail: 'FAIL'
18
+ };
@@ -82,30 +82,6 @@ export interface PeriodDetailResp {
82
82
  * @memberof PeriodDetailResp
83
83
  */
84
84
  'overdueTime'?: string;
85
- /**
86
- * 抽检结果
87
- * @type {string}
88
- * @memberof PeriodDetailResp
89
- */
90
- 'samplingResults'?: PeriodDetailRespSamplingResultsEnum;
91
- /**
92
- * 抽检时间
93
- * @type {string}
94
- * @memberof PeriodDetailResp
95
- */
96
- 'samplingTime'?: string;
97
- /**
98
- * 抽检图片
99
- * @type {string}
100
- * @memberof PeriodDetailResp
101
- */
102
- 'samplingImage'?: string;
103
- /**
104
- * 抽检人
105
- * @type {string}
106
- * @memberof PeriodDetailResp
107
- */
108
- 'samplingUserName'?: string;
109
85
  /**
110
86
  *
111
87
  * @type {WorkOrderTypeEnum}
@@ -166,12 +142,6 @@ export interface PeriodDetailResp {
166
142
  * @memberof PeriodDetailResp
167
143
  */
168
144
  'inspectionPointList'?: Array<InspectionPoint>;
169
- /**
170
- * 抽检备注
171
- * @type {string}
172
- * @memberof PeriodDetailResp
173
- */
174
- 'samplingRemarks'?: string;
175
145
  /**
176
146
  * 发起人部门名称/租户名称
177
147
  * @type {string}
@@ -214,13 +184,13 @@ export interface PeriodDetailResp {
214
184
  * @memberof PeriodDetailResp
215
185
  */
216
186
  'isTimeOut'?: boolean;
187
+ /**
188
+ * 抽检结果
189
+ * @type {string}
190
+ * @memberof PeriodDetailResp
191
+ */
192
+ 'spotCheckStatus'?: PeriodDetailRespSpotCheckStatusEnum;
217
193
  }
218
- export declare const PeriodDetailRespSamplingResultsEnum: {
219
- readonly Zero: "ZERO";
220
- readonly One: "ONE";
221
- readonly Two: "TWO";
222
- };
223
- export type PeriodDetailRespSamplingResultsEnum = typeof PeriodDetailRespSamplingResultsEnum[keyof typeof PeriodDetailRespSamplingResultsEnum];
224
194
  export declare const PeriodDetailRespPlanTypeEnum: {
225
195
  readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
226
196
  readonly PlanTypeXunjianSpace: "PLAN_TYPE_XUNJIAN_SPACE";
@@ -229,3 +199,9 @@ export declare const PeriodDetailRespPlanTypeEnum: {
229
199
  readonly PlanTypeDisasterWarning: "PLAN_TYPE_DISASTER_WARNING";
230
200
  };
231
201
  export type PeriodDetailRespPlanTypeEnum = typeof PeriodDetailRespPlanTypeEnum[keyof typeof PeriodDetailRespPlanTypeEnum];
202
+ export declare const PeriodDetailRespSpotCheckStatusEnum: {
203
+ readonly NotCheck: "NOT_CHECK";
204
+ readonly Pass: "PASS";
205
+ readonly Fail: "FAIL";
206
+ };
207
+ export type PeriodDetailRespSpotCheckStatusEnum = typeof PeriodDetailRespSpotCheckStatusEnum[keyof typeof PeriodDetailRespSpotCheckStatusEnum];
@@ -11,11 +11,6 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- export const PeriodDetailRespSamplingResultsEnum = {
15
- Zero: 'ZERO',
16
- One: 'ONE',
17
- Two: 'TWO'
18
- };
19
14
  export const PeriodDetailRespPlanTypeEnum = {
20
15
  PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
21
16
  PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
@@ -23,3 +18,8 @@ export const PeriodDetailRespPlanTypeEnum = {
23
18
  PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
24
19
  PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
25
20
  };
21
+ export const PeriodDetailRespSpotCheckStatusEnum = {
22
+ NotCheck: 'NOT_CHECK',
23
+ Pass: 'PASS',
24
+ Fail: 'FAIL'
25
+ };
@@ -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];
@@ -11,4 +11,8 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- export {};
14
+ export const ViolationWorkOrderDetailsDtoSpotCheckStatusEnum = {
15
+ NotCheck: 'NOT_CHECK',
16
+ Pass: 'PASS',
17
+ Fail: 'FAIL'
18
+ };
@@ -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];
@@ -11,8 +11,8 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- export const WorkOrderDetailDTOSamplingResultsEnum = {
15
- Zero: 'ZERO',
16
- One: 'ONE',
17
- Two: 'TWO'
14
+ export const WorkOrderDetailDTOSpotCheckStatusEnum = {
15
+ NotCheck: 'NOT_CHECK',
16
+ Pass: 'PASS',
17
+ Fail: 'FAIL'
18
18
  };
@@ -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];