@gizone/rrs-client 4.2.6-alpha.419 → 4.2.6-alpha.421
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/sys-user.d.ts +4 -4
- package/dist/esm/models/work-order-spot-check-dto.d.ts +21 -0
- package/dist/esm/models/work-order-spot-check-dto.js +7 -0
- package/dist/models/sys-user.d.ts +4 -4
- package/dist/models/work-order-spot-check-dto.d.ts +21 -0
- package/dist/models/work-order-spot-check-dto.js +8 -1
- package/models/sys-user.ts +4 -4
- package/models/work-order-spot-check-dto.ts +24 -0
- package/package.json +1 -1
|
@@ -377,14 +377,14 @@ export interface SysUser {
|
|
|
377
377
|
'sourceUserId'?: string;
|
|
378
378
|
/**
|
|
379
379
|
*
|
|
380
|
-
* @type {
|
|
380
|
+
* @type {string}
|
|
381
381
|
* @memberof SysUser
|
|
382
382
|
*/
|
|
383
|
-
'
|
|
383
|
+
'cid'?: string;
|
|
384
384
|
/**
|
|
385
385
|
*
|
|
386
|
-
* @type {
|
|
386
|
+
* @type {number}
|
|
387
387
|
* @memberof SysUser
|
|
388
388
|
*/
|
|
389
|
-
'
|
|
389
|
+
'cuserId'?: number;
|
|
390
390
|
}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { FollowupWorkOrderDTO } from './followup-work-order-dto';
|
|
13
|
+
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
13
14
|
/**
|
|
14
15
|
* 工单抽检数据传输对象
|
|
15
16
|
* @export
|
|
@@ -82,6 +83,18 @@ export interface WorkOrderSpotCheckDto {
|
|
|
82
83
|
* @memberof WorkOrderSpotCheckDto
|
|
83
84
|
*/
|
|
84
85
|
'inspectionItemNames'?: Array<string>;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {WorkOrderTypeEnum}
|
|
89
|
+
* @memberof WorkOrderSpotCheckDto
|
|
90
|
+
*/
|
|
91
|
+
'workOrderType'?: WorkOrderTypeEnum;
|
|
92
|
+
/**
|
|
93
|
+
* 计划类型
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof WorkOrderSpotCheckDto
|
|
96
|
+
*/
|
|
97
|
+
'planType'?: WorkOrderSpotCheckDtoPlanTypeEnum;
|
|
85
98
|
}
|
|
86
99
|
export declare const WorkOrderSpotCheckDtoCheckStatusEnum: {
|
|
87
100
|
readonly NotCheck: "NOT_CHECK";
|
|
@@ -89,3 +102,11 @@ export declare const WorkOrderSpotCheckDtoCheckStatusEnum: {
|
|
|
89
102
|
readonly Fail: "FAIL";
|
|
90
103
|
};
|
|
91
104
|
export type WorkOrderSpotCheckDtoCheckStatusEnum = typeof WorkOrderSpotCheckDtoCheckStatusEnum[keyof typeof WorkOrderSpotCheckDtoCheckStatusEnum];
|
|
105
|
+
export declare const WorkOrderSpotCheckDtoPlanTypeEnum: {
|
|
106
|
+
readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
|
|
107
|
+
readonly PlanTypeXunjianSpace: "PLAN_TYPE_XUNJIAN_SPACE";
|
|
108
|
+
readonly PlanTypeAiInspection: "PLAN_TYPE_AI_INSPECTION";
|
|
109
|
+
readonly PlanTypeXunjianEquipment: "PLAN_TYPE_XUNJIAN_EQUIPMENT";
|
|
110
|
+
readonly PlanTypeDisasterWarning: "PLAN_TYPE_DISASTER_WARNING";
|
|
111
|
+
};
|
|
112
|
+
export type WorkOrderSpotCheckDtoPlanTypeEnum = typeof WorkOrderSpotCheckDtoPlanTypeEnum[keyof typeof WorkOrderSpotCheckDtoPlanTypeEnum];
|
|
@@ -16,3 +16,10 @@ export const WorkOrderSpotCheckDtoCheckStatusEnum = {
|
|
|
16
16
|
Pass: 'PASS',
|
|
17
17
|
Fail: 'FAIL'
|
|
18
18
|
};
|
|
19
|
+
export const WorkOrderSpotCheckDtoPlanTypeEnum = {
|
|
20
|
+
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
21
|
+
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
22
|
+
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
23
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
24
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
25
|
+
};
|
|
@@ -377,14 +377,14 @@ export interface SysUser {
|
|
|
377
377
|
'sourceUserId'?: string;
|
|
378
378
|
/**
|
|
379
379
|
*
|
|
380
|
-
* @type {
|
|
380
|
+
* @type {string}
|
|
381
381
|
* @memberof SysUser
|
|
382
382
|
*/
|
|
383
|
-
'
|
|
383
|
+
'cid'?: string;
|
|
384
384
|
/**
|
|
385
385
|
*
|
|
386
|
-
* @type {
|
|
386
|
+
* @type {number}
|
|
387
387
|
* @memberof SysUser
|
|
388
388
|
*/
|
|
389
|
-
'
|
|
389
|
+
'cuserId'?: number;
|
|
390
390
|
}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { FollowupWorkOrderDTO } from './followup-work-order-dto';
|
|
13
|
+
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
13
14
|
/**
|
|
14
15
|
* 工单抽检数据传输对象
|
|
15
16
|
* @export
|
|
@@ -82,6 +83,18 @@ export interface WorkOrderSpotCheckDto {
|
|
|
82
83
|
* @memberof WorkOrderSpotCheckDto
|
|
83
84
|
*/
|
|
84
85
|
'inspectionItemNames'?: Array<string>;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {WorkOrderTypeEnum}
|
|
89
|
+
* @memberof WorkOrderSpotCheckDto
|
|
90
|
+
*/
|
|
91
|
+
'workOrderType'?: WorkOrderTypeEnum;
|
|
92
|
+
/**
|
|
93
|
+
* 计划类型
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof WorkOrderSpotCheckDto
|
|
96
|
+
*/
|
|
97
|
+
'planType'?: WorkOrderSpotCheckDtoPlanTypeEnum;
|
|
85
98
|
}
|
|
86
99
|
export declare const WorkOrderSpotCheckDtoCheckStatusEnum: {
|
|
87
100
|
readonly NotCheck: "NOT_CHECK";
|
|
@@ -89,3 +102,11 @@ export declare const WorkOrderSpotCheckDtoCheckStatusEnum: {
|
|
|
89
102
|
readonly Fail: "FAIL";
|
|
90
103
|
};
|
|
91
104
|
export type WorkOrderSpotCheckDtoCheckStatusEnum = typeof WorkOrderSpotCheckDtoCheckStatusEnum[keyof typeof WorkOrderSpotCheckDtoCheckStatusEnum];
|
|
105
|
+
export declare const WorkOrderSpotCheckDtoPlanTypeEnum: {
|
|
106
|
+
readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
|
|
107
|
+
readonly PlanTypeXunjianSpace: "PLAN_TYPE_XUNJIAN_SPACE";
|
|
108
|
+
readonly PlanTypeAiInspection: "PLAN_TYPE_AI_INSPECTION";
|
|
109
|
+
readonly PlanTypeXunjianEquipment: "PLAN_TYPE_XUNJIAN_EQUIPMENT";
|
|
110
|
+
readonly PlanTypeDisasterWarning: "PLAN_TYPE_DISASTER_WARNING";
|
|
111
|
+
};
|
|
112
|
+
export type WorkOrderSpotCheckDtoPlanTypeEnum = typeof WorkOrderSpotCheckDtoPlanTypeEnum[keyof typeof WorkOrderSpotCheckDtoPlanTypeEnum];
|
|
@@ -13,9 +13,16 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.WorkOrderSpotCheckDtoCheckStatusEnum = void 0;
|
|
16
|
+
exports.WorkOrderSpotCheckDtoPlanTypeEnum = exports.WorkOrderSpotCheckDtoCheckStatusEnum = void 0;
|
|
17
17
|
exports.WorkOrderSpotCheckDtoCheckStatusEnum = {
|
|
18
18
|
NotCheck: 'NOT_CHECK',
|
|
19
19
|
Pass: 'PASS',
|
|
20
20
|
Fail: 'FAIL'
|
|
21
21
|
};
|
|
22
|
+
exports.WorkOrderSpotCheckDtoPlanTypeEnum = {
|
|
23
|
+
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
24
|
+
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
25
|
+
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
26
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
27
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
28
|
+
};
|
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 {string}
|
|
392
392
|
* @memberof SysUser
|
|
393
393
|
*/
|
|
394
|
-
'
|
|
394
|
+
'cid'?: string;
|
|
395
395
|
/**
|
|
396
396
|
*
|
|
397
|
-
* @type {
|
|
397
|
+
* @type {number}
|
|
398
398
|
* @memberof SysUser
|
|
399
399
|
*/
|
|
400
|
-
'
|
|
400
|
+
'cuserId'?: number;
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
|
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
// May contain unused imports in some cases
|
|
17
17
|
// @ts-ignore
|
|
18
18
|
import type { FollowupWorkOrderDTO } from './followup-work-order-dto';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
19
22
|
|
|
20
23
|
/**
|
|
21
24
|
* 工单抽检数据传输对象
|
|
@@ -89,6 +92,18 @@ export interface WorkOrderSpotCheckDto {
|
|
|
89
92
|
* @memberof WorkOrderSpotCheckDto
|
|
90
93
|
*/
|
|
91
94
|
'inspectionItemNames'?: Array<string>;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {WorkOrderTypeEnum}
|
|
98
|
+
* @memberof WorkOrderSpotCheckDto
|
|
99
|
+
*/
|
|
100
|
+
'workOrderType'?: WorkOrderTypeEnum;
|
|
101
|
+
/**
|
|
102
|
+
* 计划类型
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof WorkOrderSpotCheckDto
|
|
105
|
+
*/
|
|
106
|
+
'planType'?: WorkOrderSpotCheckDtoPlanTypeEnum;
|
|
92
107
|
}
|
|
93
108
|
|
|
94
109
|
export const WorkOrderSpotCheckDtoCheckStatusEnum = {
|
|
@@ -98,5 +113,14 @@ export const WorkOrderSpotCheckDtoCheckStatusEnum = {
|
|
|
98
113
|
} as const;
|
|
99
114
|
|
|
100
115
|
export type WorkOrderSpotCheckDtoCheckStatusEnum = typeof WorkOrderSpotCheckDtoCheckStatusEnum[keyof typeof WorkOrderSpotCheckDtoCheckStatusEnum];
|
|
116
|
+
export const WorkOrderSpotCheckDtoPlanTypeEnum = {
|
|
117
|
+
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
118
|
+
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
119
|
+
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
120
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
121
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
122
|
+
} as const;
|
|
123
|
+
|
|
124
|
+
export type WorkOrderSpotCheckDtoPlanTypeEnum = typeof WorkOrderSpotCheckDtoPlanTypeEnum[keyof typeof WorkOrderSpotCheckDtoPlanTypeEnum];
|
|
101
125
|
|
|
102
126
|
|