@gizone/rrs-client 4.2.8-alpha.470 → 4.2.8-alpha.471
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/maintenance-history-dto.d.ts +19 -0
- package/dist/esm/models/violation-issue-type-enum.d.ts +1 -0
- package/dist/esm/models/violation-issue-type-enum.js +2 -1
- package/dist/esm/models/violation-work-order-add-vo.d.ts +1 -1
- package/dist/models/maintenance-history-dto.d.ts +19 -0
- package/dist/models/violation-issue-type-enum.d.ts +1 -0
- package/dist/models/violation-issue-type-enum.js +2 -1
- package/dist/models/violation-work-order-add-vo.d.ts +1 -1
- package/models/maintenance-history-dto.ts +21 -0
- package/models/violation-issue-type-enum.ts +2 -1
- package/models/violation-work-order-add-vo.ts +1 -1
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { WorkOrderStatusEnum } from './work-order-status-enum';
|
|
13
|
+
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
13
14
|
/**
|
|
14
15
|
* 设备维保历史参数
|
|
15
16
|
* @export
|
|
@@ -40,4 +41,22 @@ export interface MaintenanceHistoryDto {
|
|
|
40
41
|
* @memberof MaintenanceHistoryDto
|
|
41
42
|
*/
|
|
42
43
|
'status'?: WorkOrderStatusEnum;
|
|
44
|
+
/**
|
|
45
|
+
* 工单编号
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof MaintenanceHistoryDto
|
|
48
|
+
*/
|
|
49
|
+
'workOrderNo'?: string;
|
|
50
|
+
/**
|
|
51
|
+
* 工单id
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof MaintenanceHistoryDto
|
|
54
|
+
*/
|
|
55
|
+
'workOrderId'?: number;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {WorkOrderTypeEnum}
|
|
59
|
+
* @memberof MaintenanceHistoryDto
|
|
60
|
+
*/
|
|
61
|
+
'workOrderType'?: WorkOrderTypeEnum;
|
|
43
62
|
}
|
|
@@ -79,5 +79,6 @@ export declare const ViolationIssueTypeEnum: {
|
|
|
79
79
|
readonly NoTeamMeeting: "NO_TEAM_MEETING";
|
|
80
80
|
readonly PlatformStagingAreaNotCleared: "PLATFORM_STAGING_AREA_NOT_CLEARED";
|
|
81
81
|
readonly UtilizationProblem: "UTILIZATION_PROBLEM";
|
|
82
|
+
readonly Other: "OTHER";
|
|
82
83
|
};
|
|
83
84
|
export type ViolationIssueTypeEnum = typeof ViolationIssueTypeEnum[keyof typeof ViolationIssueTypeEnum];
|
|
@@ -80,5 +80,6 @@ export const ViolationIssueTypeEnum = {
|
|
|
80
80
|
SixSProblem: 'SIX_S_PROBLEM',
|
|
81
81
|
NoTeamMeeting: 'NO_TEAM_MEETING',
|
|
82
82
|
PlatformStagingAreaNotCleared: 'PLATFORM_STAGING_AREA_NOT_CLEARED',
|
|
83
|
-
UtilizationProblem: 'UTILIZATION_PROBLEM'
|
|
83
|
+
UtilizationProblem: 'UTILIZATION_PROBLEM',
|
|
84
|
+
Other: 'OTHER'
|
|
84
85
|
};
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { WorkOrderStatusEnum } from './work-order-status-enum';
|
|
13
|
+
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
13
14
|
/**
|
|
14
15
|
* 设备维保历史参数
|
|
15
16
|
* @export
|
|
@@ -40,4 +41,22 @@ export interface MaintenanceHistoryDto {
|
|
|
40
41
|
* @memberof MaintenanceHistoryDto
|
|
41
42
|
*/
|
|
42
43
|
'status'?: WorkOrderStatusEnum;
|
|
44
|
+
/**
|
|
45
|
+
* 工单编号
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof MaintenanceHistoryDto
|
|
48
|
+
*/
|
|
49
|
+
'workOrderNo'?: string;
|
|
50
|
+
/**
|
|
51
|
+
* 工单id
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof MaintenanceHistoryDto
|
|
54
|
+
*/
|
|
55
|
+
'workOrderId'?: number;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {WorkOrderTypeEnum}
|
|
59
|
+
* @memberof MaintenanceHistoryDto
|
|
60
|
+
*/
|
|
61
|
+
'workOrderType'?: WorkOrderTypeEnum;
|
|
43
62
|
}
|
|
@@ -79,5 +79,6 @@ export declare const ViolationIssueTypeEnum: {
|
|
|
79
79
|
readonly NoTeamMeeting: "NO_TEAM_MEETING";
|
|
80
80
|
readonly PlatformStagingAreaNotCleared: "PLATFORM_STAGING_AREA_NOT_CLEARED";
|
|
81
81
|
readonly UtilizationProblem: "UTILIZATION_PROBLEM";
|
|
82
|
+
readonly Other: "OTHER";
|
|
82
83
|
};
|
|
83
84
|
export type ViolationIssueTypeEnum = typeof ViolationIssueTypeEnum[keyof typeof ViolationIssueTypeEnum];
|
|
@@ -83,5 +83,6 @@ exports.ViolationIssueTypeEnum = {
|
|
|
83
83
|
SixSProblem: 'SIX_S_PROBLEM',
|
|
84
84
|
NoTeamMeeting: 'NO_TEAM_MEETING',
|
|
85
85
|
PlatformStagingAreaNotCleared: 'PLATFORM_STAGING_AREA_NOT_CLEARED',
|
|
86
|
-
UtilizationProblem: 'UTILIZATION_PROBLEM'
|
|
86
|
+
UtilizationProblem: 'UTILIZATION_PROBLEM',
|
|
87
|
+
Other: 'OTHER'
|
|
87
88
|
};
|
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
// May contain unused imports in some cases
|
|
17
17
|
// @ts-ignore
|
|
18
18
|
import type { WorkOrderStatusEnum } from './work-order-status-enum';
|
|
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
|
* 设备维保历史参数
|
|
@@ -47,6 +50,24 @@ export interface MaintenanceHistoryDto {
|
|
|
47
50
|
* @memberof MaintenanceHistoryDto
|
|
48
51
|
*/
|
|
49
52
|
'status'?: WorkOrderStatusEnum;
|
|
53
|
+
/**
|
|
54
|
+
* 工单编号
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof MaintenanceHistoryDto
|
|
57
|
+
*/
|
|
58
|
+
'workOrderNo'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* 工单id
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof MaintenanceHistoryDto
|
|
63
|
+
*/
|
|
64
|
+
'workOrderId'?: number;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {WorkOrderTypeEnum}
|
|
68
|
+
* @memberof MaintenanceHistoryDto
|
|
69
|
+
*/
|
|
70
|
+
'workOrderType'?: WorkOrderTypeEnum;
|
|
50
71
|
}
|
|
51
72
|
|
|
52
73
|
|
|
@@ -84,7 +84,8 @@ export const ViolationIssueTypeEnum = {
|
|
|
84
84
|
SixSProblem: 'SIX_S_PROBLEM',
|
|
85
85
|
NoTeamMeeting: 'NO_TEAM_MEETING',
|
|
86
86
|
PlatformStagingAreaNotCleared: 'PLATFORM_STAGING_AREA_NOT_CLEARED',
|
|
87
|
-
UtilizationProblem: 'UTILIZATION_PROBLEM'
|
|
87
|
+
UtilizationProblem: 'UTILIZATION_PROBLEM',
|
|
88
|
+
Other: 'OTHER'
|
|
88
89
|
} as const;
|
|
89
90
|
|
|
90
91
|
export type ViolationIssueTypeEnum = typeof ViolationIssueTypeEnum[keyof typeof ViolationIssueTypeEnum];
|