@gizone/rrs-client 4.2.6-alpha.421 → 4.2.6-alpha.423

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.
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { ExplorationWorkOrderTypeEnum } from './exploration-work-order-type-enum';
13
13
  import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
14
+ import type { WorkOrderSourceEnum } from './work-order-source-enum';
14
15
  /**
15
16
  * 新增勘探工单
16
17
  * @export
@@ -113,6 +114,18 @@ export interface ExplorationWorkOrderAddVo {
113
114
  * @memberof ExplorationWorkOrderAddVo
114
115
  */
115
116
  'handlerUserId'?: number;
117
+ /**
118
+ *
119
+ * @type {WorkOrderSourceEnum}
120
+ * @memberof ExplorationWorkOrderAddVo
121
+ */
122
+ 'workOrderSource'?: WorkOrderSourceEnum;
123
+ /**
124
+ * 来源ID
125
+ * @type {number}
126
+ * @memberof ExplorationWorkOrderAddVo
127
+ */
128
+ 'sourceId'?: number;
116
129
  }
117
130
  export declare const ExplorationWorkOrderAddVoHazardLevelEnum: {
118
131
  readonly A: "A";
@@ -17,6 +17,7 @@ import type { WorkOrderInternalStatusEnum } from './work-order-internal-status-e
17
17
  import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
18
18
  import type { WorkOrderSponsorDto } from './work-order-sponsor-dto';
19
19
  import type { WorkOrderStatusEnum } from './work-order-status-enum';
20
+ import type { WorkOrderSurveillanceDto } from './work-order-surveillance-dto';
20
21
  import type { WorkOrderTypeEnum } from './work-order-type-enum';
21
22
  /**
22
23
  * 离线告警工单详情
@@ -126,6 +127,12 @@ export interface OfflineAlertWorkOrderDetailsDto {
126
127
  * @memberof OfflineAlertWorkOrderDetailsDto
127
128
  */
128
129
  'spotCheckStatus'?: OfflineAlertWorkOrderDetailsDtoSpotCheckStatusEnum;
130
+ /**
131
+ * 监控设备详情
132
+ * @type {Array<WorkOrderSurveillanceDto>}
133
+ * @memberof OfflineAlertWorkOrderDetailsDto
134
+ */
135
+ 'surveillances'?: Array<WorkOrderSurveillanceDto>;
129
136
  }
130
137
  export declare const OfflineAlertWorkOrderDetailsDtoSpotCheckStatusEnum: {
131
138
  readonly NotCheck: "NOT_CHECK";
@@ -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
  }
@@ -90,4 +90,10 @@ export interface ViolationWorkOrderAddVo {
90
90
  * @memberof ViolationWorkOrderAddVo
91
91
  */
92
92
  'estimateExecutionTime'?: number;
93
+ /**
94
+ * 来源ID
95
+ * @type {number}
96
+ * @memberof ViolationWorkOrderAddVo
97
+ */
98
+ 'sourceId'?: number;
93
99
  }
@@ -154,6 +154,12 @@ export interface WorkOrderSearchDTO {
154
154
  * @memberof WorkOrderSearchDTO
155
155
  */
156
156
  'spotCheckStatus'?: WorkOrderSearchDTOSpotCheckStatusEnum;
157
+ /**
158
+ * 设备ID列表
159
+ * @type {Array<number>}
160
+ * @memberof WorkOrderSearchDTO
161
+ */
162
+ 'equipmentIds'?: Array<number>;
157
163
  }
158
164
  export declare const WorkOrderSearchDTOSpotCheckStatusEnum: {
159
165
  readonly NotCheck: "NOT_CHECK";
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { ExplorationWorkOrderTypeEnum } from './exploration-work-order-type-enum';
13
13
  import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
14
+ import type { WorkOrderSourceEnum } from './work-order-source-enum';
14
15
  /**
15
16
  * 新增勘探工单
16
17
  * @export
@@ -113,6 +114,18 @@ export interface ExplorationWorkOrderAddVo {
113
114
  * @memberof ExplorationWorkOrderAddVo
114
115
  */
115
116
  'handlerUserId'?: number;
117
+ /**
118
+ *
119
+ * @type {WorkOrderSourceEnum}
120
+ * @memberof ExplorationWorkOrderAddVo
121
+ */
122
+ 'workOrderSource'?: WorkOrderSourceEnum;
123
+ /**
124
+ * 来源ID
125
+ * @type {number}
126
+ * @memberof ExplorationWorkOrderAddVo
127
+ */
128
+ 'sourceId'?: number;
116
129
  }
117
130
  export declare const ExplorationWorkOrderAddVoHazardLevelEnum: {
118
131
  readonly A: "A";
@@ -17,6 +17,7 @@ import type { WorkOrderInternalStatusEnum } from './work-order-internal-status-e
17
17
  import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
18
18
  import type { WorkOrderSponsorDto } from './work-order-sponsor-dto';
19
19
  import type { WorkOrderStatusEnum } from './work-order-status-enum';
20
+ import type { WorkOrderSurveillanceDto } from './work-order-surveillance-dto';
20
21
  import type { WorkOrderTypeEnum } from './work-order-type-enum';
21
22
  /**
22
23
  * 离线告警工单详情
@@ -126,6 +127,12 @@ export interface OfflineAlertWorkOrderDetailsDto {
126
127
  * @memberof OfflineAlertWorkOrderDetailsDto
127
128
  */
128
129
  'spotCheckStatus'?: OfflineAlertWorkOrderDetailsDtoSpotCheckStatusEnum;
130
+ /**
131
+ * 监控设备详情
132
+ * @type {Array<WorkOrderSurveillanceDto>}
133
+ * @memberof OfflineAlertWorkOrderDetailsDto
134
+ */
135
+ 'surveillances'?: Array<WorkOrderSurveillanceDto>;
129
136
  }
130
137
  export declare const OfflineAlertWorkOrderDetailsDtoSpotCheckStatusEnum: {
131
138
  readonly NotCheck: "NOT_CHECK";
@@ -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
  }
@@ -90,4 +90,10 @@ export interface ViolationWorkOrderAddVo {
90
90
  * @memberof ViolationWorkOrderAddVo
91
91
  */
92
92
  'estimateExecutionTime'?: number;
93
+ /**
94
+ * 来源ID
95
+ * @type {number}
96
+ * @memberof ViolationWorkOrderAddVo
97
+ */
98
+ 'sourceId'?: number;
93
99
  }
@@ -154,6 +154,12 @@ export interface WorkOrderSearchDTO {
154
154
  * @memberof WorkOrderSearchDTO
155
155
  */
156
156
  'spotCheckStatus'?: WorkOrderSearchDTOSpotCheckStatusEnum;
157
+ /**
158
+ * 设备ID列表
159
+ * @type {Array<number>}
160
+ * @memberof WorkOrderSearchDTO
161
+ */
162
+ 'equipmentIds'?: Array<number>;
157
163
  }
158
164
  export declare const WorkOrderSearchDTOSpotCheckStatusEnum: {
159
165
  readonly NotCheck: "NOT_CHECK";
@@ -19,6 +19,9 @@ import type { ExplorationWorkOrderTypeEnum } from './exploration-work-order-type
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import type { WorkOrderSourceEnum } from './work-order-source-enum';
22
25
 
23
26
  /**
24
27
  * 新增勘探工单
@@ -122,6 +125,18 @@ export interface ExplorationWorkOrderAddVo {
122
125
  * @memberof ExplorationWorkOrderAddVo
123
126
  */
124
127
  'handlerUserId'?: number;
128
+ /**
129
+ *
130
+ * @type {WorkOrderSourceEnum}
131
+ * @memberof ExplorationWorkOrderAddVo
132
+ */
133
+ 'workOrderSource'?: WorkOrderSourceEnum;
134
+ /**
135
+ * 来源ID
136
+ * @type {number}
137
+ * @memberof ExplorationWorkOrderAddVo
138
+ */
139
+ 'sourceId'?: number;
125
140
  }
126
141
 
127
142
  export const ExplorationWorkOrderAddVoHazardLevelEnum = {
@@ -39,6 +39,9 @@ import type { WorkOrderSponsorDto } from './work-order-sponsor-dto';
39
39
  import type { WorkOrderStatusEnum } from './work-order-status-enum';
40
40
  // May contain unused imports in some cases
41
41
  // @ts-ignore
42
+ import type { WorkOrderSurveillanceDto } from './work-order-surveillance-dto';
43
+ // May contain unused imports in some cases
44
+ // @ts-ignore
42
45
  import type { WorkOrderTypeEnum } from './work-order-type-enum';
43
46
 
44
47
  /**
@@ -149,6 +152,12 @@ export interface OfflineAlertWorkOrderDetailsDto {
149
152
  * @memberof OfflineAlertWorkOrderDetailsDto
150
153
  */
151
154
  'spotCheckStatus'?: OfflineAlertWorkOrderDetailsDtoSpotCheckStatusEnum;
155
+ /**
156
+ * 监控设备详情
157
+ * @type {Array<WorkOrderSurveillanceDto>}
158
+ * @memberof OfflineAlertWorkOrderDetailsDto
159
+ */
160
+ 'surveillances'?: Array<WorkOrderSurveillanceDto>;
152
161
  }
153
162
 
154
163
  export const OfflineAlertWorkOrderDetailsDtoSpotCheckStatusEnum = {
@@ -388,16 +388,16 @@ export interface SysUser {
388
388
  'sourceUserId'?: string;
389
389
  /**
390
390
  *
391
- * @type {string}
391
+ * @type {number}
392
392
  * @memberof SysUser
393
393
  */
394
- 'cid'?: string;
394
+ 'cuserId'?: number;
395
395
  /**
396
396
  *
397
- * @type {number}
397
+ * @type {string}
398
398
  * @memberof SysUser
399
399
  */
400
- 'cuserId'?: number;
400
+ 'cid'?: string;
401
401
  }
402
402
 
403
403
 
@@ -101,6 +101,12 @@ export interface ViolationWorkOrderAddVo {
101
101
  * @memberof ViolationWorkOrderAddVo
102
102
  */
103
103
  'estimateExecutionTime'?: number;
104
+ /**
105
+ * 来源ID
106
+ * @type {number}
107
+ * @memberof ViolationWorkOrderAddVo
108
+ */
109
+ 'sourceId'?: number;
104
110
  }
105
111
 
106
112
 
@@ -173,6 +173,12 @@ export interface WorkOrderSearchDTO {
173
173
  * @memberof WorkOrderSearchDTO
174
174
  */
175
175
  'spotCheckStatus'?: WorkOrderSearchDTOSpotCheckStatusEnum;
176
+ /**
177
+ * 设备ID列表
178
+ * @type {Array<number>}
179
+ * @memberof WorkOrderSearchDTO
180
+ */
181
+ 'equipmentIds'?: Array<number>;
176
182
  }
177
183
 
178
184
  export const WorkOrderSearchDTOSpotCheckStatusEnum = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.2.6-alpha.421",
3
+ "version": "4.2.6-alpha.423",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {