@gizone/rrs-client 4.2.6-alpha.420 → 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 +14 -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 +14 -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 +15 -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
|
}
|
|
@@ -89,6 +89,12 @@ export interface WorkOrderSpotCheckDto {
|
|
|
89
89
|
* @memberof WorkOrderSpotCheckDto
|
|
90
90
|
*/
|
|
91
91
|
'workOrderType'?: WorkOrderTypeEnum;
|
|
92
|
+
/**
|
|
93
|
+
* 计划类型
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof WorkOrderSpotCheckDto
|
|
96
|
+
*/
|
|
97
|
+
'planType'?: WorkOrderSpotCheckDtoPlanTypeEnum;
|
|
92
98
|
}
|
|
93
99
|
export declare const WorkOrderSpotCheckDtoCheckStatusEnum: {
|
|
94
100
|
readonly NotCheck: "NOT_CHECK";
|
|
@@ -96,3 +102,11 @@ export declare const WorkOrderSpotCheckDtoCheckStatusEnum: {
|
|
|
96
102
|
readonly Fail: "FAIL";
|
|
97
103
|
};
|
|
98
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
|
}
|
|
@@ -89,6 +89,12 @@ export interface WorkOrderSpotCheckDto {
|
|
|
89
89
|
* @memberof WorkOrderSpotCheckDto
|
|
90
90
|
*/
|
|
91
91
|
'workOrderType'?: WorkOrderTypeEnum;
|
|
92
|
+
/**
|
|
93
|
+
* 计划类型
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof WorkOrderSpotCheckDto
|
|
96
|
+
*/
|
|
97
|
+
'planType'?: WorkOrderSpotCheckDtoPlanTypeEnum;
|
|
92
98
|
}
|
|
93
99
|
export declare const WorkOrderSpotCheckDtoCheckStatusEnum: {
|
|
94
100
|
readonly NotCheck: "NOT_CHECK";
|
|
@@ -96,3 +102,11 @@ export declare const WorkOrderSpotCheckDtoCheckStatusEnum: {
|
|
|
96
102
|
readonly Fail: "FAIL";
|
|
97
103
|
};
|
|
98
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
|
|
|
@@ -98,6 +98,12 @@ export interface WorkOrderSpotCheckDto {
|
|
|
98
98
|
* @memberof WorkOrderSpotCheckDto
|
|
99
99
|
*/
|
|
100
100
|
'workOrderType'?: WorkOrderTypeEnum;
|
|
101
|
+
/**
|
|
102
|
+
* 计划类型
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof WorkOrderSpotCheckDto
|
|
105
|
+
*/
|
|
106
|
+
'planType'?: WorkOrderSpotCheckDtoPlanTypeEnum;
|
|
101
107
|
}
|
|
102
108
|
|
|
103
109
|
export const WorkOrderSpotCheckDtoCheckStatusEnum = {
|
|
@@ -107,5 +113,14 @@ export const WorkOrderSpotCheckDtoCheckStatusEnum = {
|
|
|
107
113
|
} as const;
|
|
108
114
|
|
|
109
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];
|
|
110
125
|
|
|
111
126
|
|