@gizone/rrs-client 4.2.9-alpha.682 → 4.2.9-alpha.684
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/.openapi-generator/FILES +5 -0
- package/apis/maintenance-order-api.ts +192 -0
- package/dist/apis/maintenance-order-api.d.ts +102 -0
- package/dist/apis/maintenance-order-api.js +144 -0
- package/dist/esm/apis/maintenance-order-api.d.ts +102 -0
- package/dist/esm/apis/maintenance-order-api.js +144 -0
- package/dist/esm/models/index.d.ts +5 -0
- package/dist/esm/models/index.js +5 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +6 -6
- package/dist/esm/models/json-result-maintenance-order-approval-config-entity.d.ts +62 -0
- package/dist/esm/models/json-result-maintenance-order-approval-config-entity.js +14 -0
- package/dist/esm/models/maintenance-order-approval-config-entity.d.ts +115 -0
- package/dist/esm/models/maintenance-order-approval-config-entity.js +14 -0
- package/dist/esm/models/maintenance-order-approval-dto.d.ts +30 -0
- package/dist/esm/models/maintenance-order-approval-dto.js +14 -0
- package/dist/esm/models/maintenance-order-approval-status-enum.d.ts +22 -0
- package/dist/esm/models/maintenance-order-approval-status-enum.js +23 -0
- package/dist/esm/models/maintenance-order-operate-type-enum.d.ts +23 -0
- package/dist/esm/models/maintenance-order-operate-type-enum.js +24 -0
- package/dist/esm/models/maintenance-order-process-record-list-vo.d.ts +13 -0
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/esm/models/work-order-internal-status-enum.d.ts +1 -0
- package/dist/esm/models/work-order-internal-status-enum.js +2 -1
- package/dist/esm/models/work-order-type-enum.d.ts +1 -0
- package/dist/esm/models/work-order-type-enum.js +2 -1
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -0
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +6 -6
- package/dist/models/json-result-maintenance-order-approval-config-entity.d.ts +62 -0
- package/dist/models/json-result-maintenance-order-approval-config-entity.js +15 -0
- package/dist/models/maintenance-order-approval-config-entity.d.ts +115 -0
- package/dist/models/maintenance-order-approval-config-entity.js +15 -0
- package/dist/models/maintenance-order-approval-dto.d.ts +30 -0
- package/dist/models/maintenance-order-approval-dto.js +15 -0
- package/dist/models/maintenance-order-approval-status-enum.d.ts +22 -0
- package/dist/models/maintenance-order-approval-status-enum.js +26 -0
- package/dist/models/maintenance-order-operate-type-enum.d.ts +23 -0
- package/dist/models/maintenance-order-operate-type-enum.js +27 -0
- package/dist/models/maintenance-order-process-record-list-vo.d.ts +13 -0
- package/dist/models/sys-user.d.ts +4 -4
- package/dist/models/work-order-internal-status-enum.d.ts +1 -0
- package/dist/models/work-order-internal-status-enum.js +2 -1
- package/dist/models/work-order-type-enum.d.ts +1 -0
- package/dist/models/work-order-type-enum.js +2 -1
- package/models/index.ts +5 -0
- package/models/ipage-energy-cost-record-info-vo.ts +6 -6
- package/models/json-result-maintenance-order-approval-config-entity.ts +72 -0
- package/models/maintenance-order-approval-config-entity.ts +125 -0
- package/models/maintenance-order-approval-dto.ts +36 -0
- package/models/maintenance-order-approval-status-enum.ts +32 -0
- package/models/maintenance-order-operate-type-enum.ts +33 -0
- package/models/maintenance-order-process-record-list-vo.ts +15 -0
- package/models/sys-user.ts +4 -4
- package/models/work-order-internal-status-enum.ts +2 -1
- package/models/work-order-type-enum.ts +2 -1
- package/ossutil.log +1221 -1221
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { MaintenanceOrderOperateTypeEnum } from './maintenance-order-operate-type-enum';
|
|
12
13
|
import type { MaintenanceOrderProcessStatusEnum } from './maintenance-order-process-status-enum';
|
|
13
14
|
/**
|
|
14
15
|
* 修缮单流转记录列表
|
|
@@ -58,4 +59,16 @@ export interface MaintenanceOrderProcessRecordListVo {
|
|
|
58
59
|
* @memberof MaintenanceOrderProcessRecordListVo
|
|
59
60
|
*/
|
|
60
61
|
'processStatus'?: MaintenanceOrderProcessStatusEnum;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {MaintenanceOrderOperateTypeEnum}
|
|
65
|
+
* @memberof MaintenanceOrderProcessRecordListVo
|
|
66
|
+
*/
|
|
67
|
+
'operateType'?: MaintenanceOrderOperateTypeEnum;
|
|
68
|
+
/**
|
|
69
|
+
* 备注
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof MaintenanceOrderProcessRecordListVo
|
|
72
|
+
*/
|
|
73
|
+
'remark'?: string;
|
|
61
74
|
}
|
|
@@ -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
|
}
|
|
@@ -34,5 +34,6 @@ export declare const WorkOrderInternalStatusEnum: {
|
|
|
34
34
|
readonly ExplorationWorkOrderInProgressLevelOne: "EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_ONE";
|
|
35
35
|
readonly ExplorationWorkOrderInProgressLevelTwo: "EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_TWO";
|
|
36
36
|
readonly MaintenanceDailyWorkOrderExecutor: "MAINTENANCE_DAILY_WORK_ORDER_EXECUTOR";
|
|
37
|
+
readonly MaintenanceOrderExecutor: "MAINTENANCE_ORDER_EXECUTOR";
|
|
37
38
|
};
|
|
38
39
|
export type WorkOrderInternalStatusEnum = typeof WorkOrderInternalStatusEnum[keyof typeof WorkOrderInternalStatusEnum];
|
|
@@ -38,5 +38,6 @@ exports.WorkOrderInternalStatusEnum = {
|
|
|
38
38
|
MonitoringCoverageAlertWorkOrderInProgressLevelFour: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_FOUR',
|
|
39
39
|
ExplorationWorkOrderInProgressLevelOne: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
|
|
40
40
|
ExplorationWorkOrderInProgressLevelTwo: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_TWO',
|
|
41
|
-
MaintenanceDailyWorkOrderExecutor: 'MAINTENANCE_DAILY_WORK_ORDER_EXECUTOR'
|
|
41
|
+
MaintenanceDailyWorkOrderExecutor: 'MAINTENANCE_DAILY_WORK_ORDER_EXECUTOR',
|
|
42
|
+
MaintenanceOrderExecutor: 'MAINTENANCE_ORDER_EXECUTOR'
|
|
42
43
|
};
|
|
@@ -37,5 +37,6 @@ export declare const WorkOrderTypeEnum: {
|
|
|
37
37
|
readonly DisasterWarningWorkOrder: "DISASTER_WARNING_WORK_ORDER";
|
|
38
38
|
readonly ExplorationWorkOrder: "EXPLORATION_WORK_ORDER";
|
|
39
39
|
readonly MaintenanceDailyWorkOrder: "MAINTENANCE_DAILY_WORK_ORDER";
|
|
40
|
+
readonly MaintenanceOrder: "MAINTENANCE_ORDER";
|
|
40
41
|
};
|
|
41
42
|
export type WorkOrderTypeEnum = typeof WorkOrderTypeEnum[keyof typeof WorkOrderTypeEnum];
|
|
@@ -41,5 +41,6 @@ exports.WorkOrderTypeEnum = {
|
|
|
41
41
|
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
|
|
42
42
|
DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER',
|
|
43
43
|
ExplorationWorkOrder: 'EXPLORATION_WORK_ORDER',
|
|
44
|
-
MaintenanceDailyWorkOrder: 'MAINTENANCE_DAILY_WORK_ORDER'
|
|
44
|
+
MaintenanceDailyWorkOrder: 'MAINTENANCE_DAILY_WORK_ORDER',
|
|
45
|
+
MaintenanceOrder: 'MAINTENANCE_ORDER'
|
|
45
46
|
};
|
package/models/index.ts
CHANGED
|
@@ -321,6 +321,7 @@ export * from './json-result-list-work-order-spot-check-dto';
|
|
|
321
321
|
export * from './json-result-list-work-order-step-by-step-push-user-details-dto';
|
|
322
322
|
export * from './json-result-list-work-order-type-settings-entity';
|
|
323
323
|
export * from './json-result-maintenance-daily-work-order-details-dto';
|
|
324
|
+
export * from './json-result-maintenance-order-approval-config-entity';
|
|
324
325
|
export * from './json-result-maintenance-order-details-vo';
|
|
325
326
|
export * from './json-result-maintenance-standard-entity';
|
|
326
327
|
export * from './json-result-map-string-object';
|
|
@@ -386,9 +387,13 @@ export * from './maintenance-history-dto';
|
|
|
386
387
|
export * from './maintenance-order-acceptance-add-dto';
|
|
387
388
|
export * from './maintenance-order-acceptance-details-vo';
|
|
388
389
|
export * from './maintenance-order-approval-config-add-dto';
|
|
390
|
+
export * from './maintenance-order-approval-config-entity';
|
|
391
|
+
export * from './maintenance-order-approval-dto';
|
|
392
|
+
export * from './maintenance-order-approval-status-enum';
|
|
389
393
|
export * from './maintenance-order-construction-details-vo';
|
|
390
394
|
export * from './maintenance-order-details-vo';
|
|
391
395
|
export * from './maintenance-order-list-vo';
|
|
396
|
+
export * from './maintenance-order-operate-type-enum';
|
|
392
397
|
export * from './maintenance-order-process-record-list-vo';
|
|
393
398
|
export * from './maintenance-order-process-status-enum';
|
|
394
399
|
export * from './maintenance-order-settlement-add-dto';
|
|
@@ -41,12 +41,6 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
41
41
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
42
42
|
*/
|
|
43
43
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
44
|
-
/**
|
|
45
|
-
*
|
|
46
|
-
* @type {boolean}
|
|
47
|
-
* @memberof IPageEnergyCostRecordInfoVO
|
|
48
|
-
*/
|
|
49
|
-
'searchCount'?: boolean;
|
|
50
44
|
/**
|
|
51
45
|
*
|
|
52
46
|
* @type {number}
|
|
@@ -60,6 +54,12 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
60
54
|
* @deprecated
|
|
61
55
|
*/
|
|
62
56
|
'hitCount'?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {boolean}
|
|
60
|
+
* @memberof IPageEnergyCostRecordInfoVO
|
|
61
|
+
*/
|
|
62
|
+
'searchCount'?: boolean;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { MaintenanceOrderApprovalConfigEntity } from './maintenance-order-approval-config-entity';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultMaintenanceOrderApprovalConfigEntity
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultMaintenanceOrderApprovalConfigEntity {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultMaintenanceOrderApprovalConfigEntity
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultMaintenanceOrderApprovalConfigEntity
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultMaintenanceOrderApprovalConfigEntity
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {MaintenanceOrderApprovalConfigEntity}
|
|
50
|
+
* @memberof JsonResultMaintenanceOrderApprovalConfigEntity
|
|
51
|
+
*/
|
|
52
|
+
'data'?: MaintenanceOrderApprovalConfigEntity | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultMaintenanceOrderApprovalConfigEntity
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultMaintenanceOrderApprovalConfigEntity
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultMaintenanceOrderApprovalConfigEntity
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { MaintenanceOrderApprovalStatusEnum } from './maintenance-order-approval-status-enum';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* 返回数据,可以是任意类型的值
|
|
22
|
+
* @export
|
|
23
|
+
* @interface MaintenanceOrderApprovalConfigEntity
|
|
24
|
+
*/
|
|
25
|
+
export interface MaintenanceOrderApprovalConfigEntity {
|
|
26
|
+
/**
|
|
27
|
+
* 主键ID
|
|
28
|
+
* @type {number}
|
|
29
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
30
|
+
*/
|
|
31
|
+
'id'?: number;
|
|
32
|
+
/**
|
|
33
|
+
* 修缮单id
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
36
|
+
*/
|
|
37
|
+
'maintenanceOrderId'?: number;
|
|
38
|
+
/**
|
|
39
|
+
* 审批顺序
|
|
40
|
+
* @type {number}
|
|
41
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
42
|
+
*/
|
|
43
|
+
'approverOrder'?: number;
|
|
44
|
+
/**
|
|
45
|
+
* 审批人id
|
|
46
|
+
* @type {number}
|
|
47
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
48
|
+
*/
|
|
49
|
+
'approverId'?: number;
|
|
50
|
+
/**
|
|
51
|
+
* 审批人编号
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
54
|
+
*/
|
|
55
|
+
'approverNo'?: string;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {MaintenanceOrderApprovalStatusEnum}
|
|
59
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
60
|
+
*/
|
|
61
|
+
'status'?: MaintenanceOrderApprovalStatusEnum;
|
|
62
|
+
/**
|
|
63
|
+
* 审批时间
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
66
|
+
*/
|
|
67
|
+
'approveTime'?: string;
|
|
68
|
+
/**
|
|
69
|
+
* 备注
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
72
|
+
*/
|
|
73
|
+
'remark'?: string;
|
|
74
|
+
/**
|
|
75
|
+
* 消息推送状态 0:未推送 1:已推送
|
|
76
|
+
* @type {number}
|
|
77
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
78
|
+
*/
|
|
79
|
+
'pushStatus'?: number;
|
|
80
|
+
/**
|
|
81
|
+
* h-work创建的代办消息任务ID
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
84
|
+
*/
|
|
85
|
+
'taskId'?: string;
|
|
86
|
+
/**
|
|
87
|
+
* 是否为当前审批节点
|
|
88
|
+
* @type {boolean}
|
|
89
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
90
|
+
*/
|
|
91
|
+
'isCurrent'?: boolean;
|
|
92
|
+
/**
|
|
93
|
+
* 创建人id
|
|
94
|
+
* @type {number}
|
|
95
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
96
|
+
*/
|
|
97
|
+
'createUserId'?: number;
|
|
98
|
+
/**
|
|
99
|
+
* 修改人id
|
|
100
|
+
* @type {number}
|
|
101
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
102
|
+
*/
|
|
103
|
+
'updateUserId'?: number;
|
|
104
|
+
/**
|
|
105
|
+
* 创建时间
|
|
106
|
+
* @type {string}
|
|
107
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
108
|
+
*/
|
|
109
|
+
'createTime'?: string;
|
|
110
|
+
/**
|
|
111
|
+
* 修改时间
|
|
112
|
+
* @type {string}
|
|
113
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
114
|
+
*/
|
|
115
|
+
'updateTime'?: string;
|
|
116
|
+
/**
|
|
117
|
+
* 是否删除 0:已删除 1:未删除
|
|
118
|
+
* @type {number}
|
|
119
|
+
* @memberof MaintenanceOrderApprovalConfigEntity
|
|
120
|
+
*/
|
|
121
|
+
'isDelete'?: number;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 修缮单审批接口
|
|
19
|
+
* @export
|
|
20
|
+
* @interface MaintenanceOrderApprovalDto
|
|
21
|
+
*/
|
|
22
|
+
export interface MaintenanceOrderApprovalDto {
|
|
23
|
+
/**
|
|
24
|
+
* 审批结果:true-同意,false-拒绝
|
|
25
|
+
* @type {boolean}
|
|
26
|
+
* @memberof MaintenanceOrderApprovalDto
|
|
27
|
+
*/
|
|
28
|
+
'decision'?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* 拒绝原因(decision=2 时必填)
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof MaintenanceOrderApprovalDto
|
|
33
|
+
*/
|
|
34
|
+
'rejectReason'?: string;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 审批状态
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
export const MaintenanceOrderApprovalStatusEnum = {
|
|
24
|
+
Pending: 'PENDING',
|
|
25
|
+
Approve: 'APPROVE',
|
|
26
|
+
Reject: 'REJECT'
|
|
27
|
+
} as const;
|
|
28
|
+
|
|
29
|
+
export type MaintenanceOrderApprovalStatusEnum = typeof MaintenanceOrderApprovalStatusEnum[keyof typeof MaintenanceOrderApprovalStatusEnum];
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 操作类型
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
export const MaintenanceOrderOperateTypeEnum = {
|
|
24
|
+
Submit: 'SUBMIT',
|
|
25
|
+
Approve: 'APPROVE',
|
|
26
|
+
Reject: 'REJECT',
|
|
27
|
+
UpdatePlan: 'UPDATE_PLAN'
|
|
28
|
+
} as const;
|
|
29
|
+
|
|
30
|
+
export type MaintenanceOrderOperateTypeEnum = typeof MaintenanceOrderOperateTypeEnum[keyof typeof MaintenanceOrderOperateTypeEnum];
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { MaintenanceOrderOperateTypeEnum } from './maintenance-order-operate-type-enum';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import type { MaintenanceOrderProcessStatusEnum } from './maintenance-order-process-status-enum';
|
|
@@ -65,6 +68,18 @@ export interface MaintenanceOrderProcessRecordListVo {
|
|
|
65
68
|
* @memberof MaintenanceOrderProcessRecordListVo
|
|
66
69
|
*/
|
|
67
70
|
'processStatus'?: MaintenanceOrderProcessStatusEnum;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {MaintenanceOrderOperateTypeEnum}
|
|
74
|
+
* @memberof MaintenanceOrderProcessRecordListVo
|
|
75
|
+
*/
|
|
76
|
+
'operateType'?: MaintenanceOrderOperateTypeEnum;
|
|
77
|
+
/**
|
|
78
|
+
* 备注
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof MaintenanceOrderProcessRecordListVo
|
|
81
|
+
*/
|
|
82
|
+
'remark'?: string;
|
|
68
83
|
}
|
|
69
84
|
|
|
70
85
|
|
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
|
|
|
@@ -39,7 +39,8 @@ export const WorkOrderInternalStatusEnum = {
|
|
|
39
39
|
MonitoringCoverageAlertWorkOrderInProgressLevelFour: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_FOUR',
|
|
40
40
|
ExplorationWorkOrderInProgressLevelOne: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
|
|
41
41
|
ExplorationWorkOrderInProgressLevelTwo: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_TWO',
|
|
42
|
-
MaintenanceDailyWorkOrderExecutor: 'MAINTENANCE_DAILY_WORK_ORDER_EXECUTOR'
|
|
42
|
+
MaintenanceDailyWorkOrderExecutor: 'MAINTENANCE_DAILY_WORK_ORDER_EXECUTOR',
|
|
43
|
+
MaintenanceOrderExecutor: 'MAINTENANCE_ORDER_EXECUTOR'
|
|
43
44
|
} as const;
|
|
44
45
|
|
|
45
46
|
export type WorkOrderInternalStatusEnum = typeof WorkOrderInternalStatusEnum[keyof typeof WorkOrderInternalStatusEnum];
|
|
@@ -42,7 +42,8 @@ export const WorkOrderTypeEnum = {
|
|
|
42
42
|
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
|
|
43
43
|
DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER',
|
|
44
44
|
ExplorationWorkOrder: 'EXPLORATION_WORK_ORDER',
|
|
45
|
-
MaintenanceDailyWorkOrder: 'MAINTENANCE_DAILY_WORK_ORDER'
|
|
45
|
+
MaintenanceDailyWorkOrder: 'MAINTENANCE_DAILY_WORK_ORDER',
|
|
46
|
+
MaintenanceOrder: 'MAINTENANCE_ORDER'
|
|
46
47
|
} as const;
|
|
47
48
|
|
|
48
49
|
export type WorkOrderTypeEnum = typeof WorkOrderTypeEnum[keyof typeof WorkOrderTypeEnum];
|