@gizone/rrs-client 4.2.6-alpha.421 → 4.2.6-alpha.422
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.
- package/dist/esm/models/offline-alert-work-order-details-dto.d.ts +7 -0
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/esm/models/work-order-search-dto.d.ts +6 -0
- package/dist/models/offline-alert-work-order-details-dto.d.ts +7 -0
- package/dist/models/sys-user.d.ts +4 -4
- package/dist/models/work-order-search-dto.d.ts +6 -0
- package/models/offline-alert-work-order-details-dto.ts +9 -0
- package/models/sys-user.ts +4 -4
- package/models/work-order-search-dto.ts +6 -0
- package/package.json +1 -1
|
@@ -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 {
|
|
380
|
+
* @type {number}
|
|
381
381
|
* @memberof SysUser
|
|
382
382
|
*/
|
|
383
|
-
'
|
|
383
|
+
'cuserId'?: number;
|
|
384
384
|
/**
|
|
385
385
|
*
|
|
386
|
-
* @type {
|
|
386
|
+
* @type {string}
|
|
387
387
|
* @memberof SysUser
|
|
388
388
|
*/
|
|
389
|
-
'
|
|
389
|
+
'cid'?: string;
|
|
390
390
|
}
|
|
@@ -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";
|
|
@@ -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 {
|
|
380
|
+
* @type {number}
|
|
381
381
|
* @memberof SysUser
|
|
382
382
|
*/
|
|
383
|
-
'
|
|
383
|
+
'cuserId'?: number;
|
|
384
384
|
/**
|
|
385
385
|
*
|
|
386
|
-
* @type {
|
|
386
|
+
* @type {string}
|
|
387
387
|
* @memberof SysUser
|
|
388
388
|
*/
|
|
389
|
-
'
|
|
389
|
+
'cid'?: string;
|
|
390
390
|
}
|
|
@@ -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";
|
|
@@ -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 = {
|
package/models/sys-user.ts
CHANGED
|
@@ -388,16 +388,16 @@ export interface SysUser {
|
|
|
388
388
|
'sourceUserId'?: string;
|
|
389
389
|
/**
|
|
390
390
|
*
|
|
391
|
-
* @type {
|
|
391
|
+
* @type {number}
|
|
392
392
|
* @memberof SysUser
|
|
393
393
|
*/
|
|
394
|
-
'
|
|
394
|
+
'cuserId'?: number;
|
|
395
395
|
/**
|
|
396
396
|
*
|
|
397
|
-
* @type {
|
|
397
|
+
* @type {string}
|
|
398
398
|
* @memberof SysUser
|
|
399
399
|
*/
|
|
400
|
-
'
|
|
400
|
+
'cid'?: string;
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
|
|
@@ -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 = {
|