@gizone/rrs-client 4.2.9-alpha.683 → 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.
Files changed (54) hide show
  1. package/.openapi-generator/FILES +5 -0
  2. package/apis/maintenance-order-api.ts +192 -0
  3. package/dist/apis/maintenance-order-api.d.ts +102 -0
  4. package/dist/apis/maintenance-order-api.js +144 -0
  5. package/dist/esm/apis/maintenance-order-api.d.ts +102 -0
  6. package/dist/esm/apis/maintenance-order-api.js +144 -0
  7. package/dist/esm/models/index.d.ts +5 -0
  8. package/dist/esm/models/index.js +5 -0
  9. package/dist/esm/models/json-result-maintenance-order-approval-config-entity.d.ts +62 -0
  10. package/dist/esm/models/json-result-maintenance-order-approval-config-entity.js +14 -0
  11. package/dist/esm/models/maintenance-order-approval-config-entity.d.ts +115 -0
  12. package/dist/esm/models/maintenance-order-approval-config-entity.js +14 -0
  13. package/dist/esm/models/maintenance-order-approval-dto.d.ts +30 -0
  14. package/dist/esm/models/maintenance-order-approval-dto.js +14 -0
  15. package/dist/esm/models/maintenance-order-approval-status-enum.d.ts +22 -0
  16. package/dist/esm/models/maintenance-order-approval-status-enum.js +23 -0
  17. package/dist/esm/models/maintenance-order-operate-type-enum.d.ts +23 -0
  18. package/dist/esm/models/maintenance-order-operate-type-enum.js +24 -0
  19. package/dist/esm/models/maintenance-order-process-record-list-vo.d.ts +13 -0
  20. package/dist/esm/models/sys-user.d.ts +4 -4
  21. package/dist/esm/models/work-order-internal-status-enum.d.ts +1 -0
  22. package/dist/esm/models/work-order-internal-status-enum.js +2 -1
  23. package/dist/esm/models/work-order-type-enum.d.ts +1 -0
  24. package/dist/esm/models/work-order-type-enum.js +2 -1
  25. package/dist/models/index.d.ts +5 -0
  26. package/dist/models/index.js +5 -0
  27. package/dist/models/json-result-maintenance-order-approval-config-entity.d.ts +62 -0
  28. package/dist/models/json-result-maintenance-order-approval-config-entity.js +15 -0
  29. package/dist/models/maintenance-order-approval-config-entity.d.ts +115 -0
  30. package/dist/models/maintenance-order-approval-config-entity.js +15 -0
  31. package/dist/models/maintenance-order-approval-dto.d.ts +30 -0
  32. package/dist/models/maintenance-order-approval-dto.js +15 -0
  33. package/dist/models/maintenance-order-approval-status-enum.d.ts +22 -0
  34. package/dist/models/maintenance-order-approval-status-enum.js +26 -0
  35. package/dist/models/maintenance-order-operate-type-enum.d.ts +23 -0
  36. package/dist/models/maintenance-order-operate-type-enum.js +27 -0
  37. package/dist/models/maintenance-order-process-record-list-vo.d.ts +13 -0
  38. package/dist/models/sys-user.d.ts +4 -4
  39. package/dist/models/work-order-internal-status-enum.d.ts +1 -0
  40. package/dist/models/work-order-internal-status-enum.js +2 -1
  41. package/dist/models/work-order-type-enum.d.ts +1 -0
  42. package/dist/models/work-order-type-enum.js +2 -1
  43. package/models/index.ts +5 -0
  44. package/models/json-result-maintenance-order-approval-config-entity.ts +72 -0
  45. package/models/maintenance-order-approval-config-entity.ts +125 -0
  46. package/models/maintenance-order-approval-dto.ts +36 -0
  47. package/models/maintenance-order-approval-status-enum.ts +32 -0
  48. package/models/maintenance-order-operate-type-enum.ts +33 -0
  49. package/models/maintenance-order-process-record-list-vo.ts +15 -0
  50. package/models/sys-user.ts +4 -4
  51. package/models/work-order-internal-status-enum.ts +2 -1
  52. package/models/work-order-type-enum.ts +2 -1
  53. package/ossutil.log +1221 -1221
  54. package/package.json +1 -1
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,22 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 审批状态
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare const MaintenanceOrderApprovalStatusEnum: {
18
+ readonly Pending: "PENDING";
19
+ readonly Approve: "APPROVE";
20
+ readonly Reject: "REJECT";
21
+ };
22
+ export type MaintenanceOrderApprovalStatusEnum = typeof MaintenanceOrderApprovalStatusEnum[keyof typeof MaintenanceOrderApprovalStatusEnum];
@@ -0,0 +1,23 @@
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
+ * @export
17
+ * @enum {string}
18
+ */
19
+ export const MaintenanceOrderApprovalStatusEnum = {
20
+ Pending: 'PENDING',
21
+ Approve: 'APPROVE',
22
+ Reject: 'REJECT'
23
+ };
@@ -0,0 +1,23 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 操作类型
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare const MaintenanceOrderOperateTypeEnum: {
18
+ readonly Submit: "SUBMIT";
19
+ readonly Approve: "APPROVE";
20
+ readonly Reject: "REJECT";
21
+ readonly UpdatePlan: "UPDATE_PLAN";
22
+ };
23
+ export type MaintenanceOrderOperateTypeEnum = typeof MaintenanceOrderOperateTypeEnum[keyof typeof MaintenanceOrderOperateTypeEnum];
@@ -0,0 +1,24 @@
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
+ * @export
17
+ * @enum {string}
18
+ */
19
+ export const MaintenanceOrderOperateTypeEnum = {
20
+ Submit: 'SUBMIT',
21
+ Approve: 'APPROVE',
22
+ Reject: 'REJECT',
23
+ UpdatePlan: 'UPDATE_PLAN'
24
+ };
@@ -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 {number}
380
+ * @type {string}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cuserId'?: number;
383
+ 'cid'?: string;
384
384
  /**
385
385
  *
386
- * @type {string}
386
+ * @type {number}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cid'?: string;
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];
@@ -35,5 +35,6 @@ export const WorkOrderInternalStatusEnum = {
35
35
  MonitoringCoverageAlertWorkOrderInProgressLevelFour: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_FOUR',
36
36
  ExplorationWorkOrderInProgressLevelOne: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
37
37
  ExplorationWorkOrderInProgressLevelTwo: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_TWO',
38
- MaintenanceDailyWorkOrderExecutor: 'MAINTENANCE_DAILY_WORK_ORDER_EXECUTOR'
38
+ MaintenanceDailyWorkOrderExecutor: 'MAINTENANCE_DAILY_WORK_ORDER_EXECUTOR',
39
+ MaintenanceOrderExecutor: 'MAINTENANCE_ORDER_EXECUTOR'
39
40
  };
@@ -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];
@@ -38,5 +38,6 @@ export const WorkOrderTypeEnum = {
38
38
  MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
39
39
  DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER',
40
40
  ExplorationWorkOrder: 'EXPLORATION_WORK_ORDER',
41
- MaintenanceDailyWorkOrder: 'MAINTENANCE_DAILY_WORK_ORDER'
41
+ MaintenanceDailyWorkOrder: 'MAINTENANCE_DAILY_WORK_ORDER',
42
+ MaintenanceOrder: 'MAINTENANCE_ORDER'
42
43
  };
@@ -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';
@@ -337,6 +337,7 @@ __exportStar(require("./json-result-list-work-order-spot-check-dto"), exports);
337
337
  __exportStar(require("./json-result-list-work-order-step-by-step-push-user-details-dto"), exports);
338
338
  __exportStar(require("./json-result-list-work-order-type-settings-entity"), exports);
339
339
  __exportStar(require("./json-result-maintenance-daily-work-order-details-dto"), exports);
340
+ __exportStar(require("./json-result-maintenance-order-approval-config-entity"), exports);
340
341
  __exportStar(require("./json-result-maintenance-order-details-vo"), exports);
341
342
  __exportStar(require("./json-result-maintenance-standard-entity"), exports);
342
343
  __exportStar(require("./json-result-map-string-object"), exports);
@@ -402,9 +403,13 @@ __exportStar(require("./maintenance-history-dto"), exports);
402
403
  __exportStar(require("./maintenance-order-acceptance-add-dto"), exports);
403
404
  __exportStar(require("./maintenance-order-acceptance-details-vo"), exports);
404
405
  __exportStar(require("./maintenance-order-approval-config-add-dto"), exports);
406
+ __exportStar(require("./maintenance-order-approval-config-entity"), exports);
407
+ __exportStar(require("./maintenance-order-approval-dto"), exports);
408
+ __exportStar(require("./maintenance-order-approval-status-enum"), exports);
405
409
  __exportStar(require("./maintenance-order-construction-details-vo"), exports);
406
410
  __exportStar(require("./maintenance-order-details-vo"), exports);
407
411
  __exportStar(require("./maintenance-order-list-vo"), exports);
412
+ __exportStar(require("./maintenance-order-operate-type-enum"), exports);
408
413
  __exportStar(require("./maintenance-order-process-record-list-vo"), exports);
409
414
  __exportStar(require("./maintenance-order-process-status-enum"), exports);
410
415
  __exportStar(require("./maintenance-order-settlement-add-dto"), exports);
@@ -0,0 +1,62 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { BaseErrorResult } from './base-error-result';
13
+ import type { MaintenanceOrderApprovalConfigEntity } from './maintenance-order-approval-config-entity';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultMaintenanceOrderApprovalConfigEntity
18
+ */
19
+ export interface JsonResultMaintenanceOrderApprovalConfigEntity {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultMaintenanceOrderApprovalConfigEntity
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultMaintenanceOrderApprovalConfigEntity
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultMaintenanceOrderApprovalConfigEntity
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ *
40
+ * @type {MaintenanceOrderApprovalConfigEntity}
41
+ * @memberof JsonResultMaintenanceOrderApprovalConfigEntity
42
+ */
43
+ 'data'?: MaintenanceOrderApprovalConfigEntity | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultMaintenanceOrderApprovalConfigEntity
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultMaintenanceOrderApprovalConfigEntity
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultMaintenanceOrderApprovalConfigEntity
60
+ */
61
+ 'requestId'?: string | null;
62
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,115 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { MaintenanceOrderApprovalStatusEnum } from './maintenance-order-approval-status-enum';
13
+ /**
14
+ * 返回数据,可以是任意类型的值
15
+ * @export
16
+ * @interface MaintenanceOrderApprovalConfigEntity
17
+ */
18
+ export interface MaintenanceOrderApprovalConfigEntity {
19
+ /**
20
+ * 主键ID
21
+ * @type {number}
22
+ * @memberof MaintenanceOrderApprovalConfigEntity
23
+ */
24
+ 'id'?: number;
25
+ /**
26
+ * 修缮单id
27
+ * @type {number}
28
+ * @memberof MaintenanceOrderApprovalConfigEntity
29
+ */
30
+ 'maintenanceOrderId'?: number;
31
+ /**
32
+ * 审批顺序
33
+ * @type {number}
34
+ * @memberof MaintenanceOrderApprovalConfigEntity
35
+ */
36
+ 'approverOrder'?: number;
37
+ /**
38
+ * 审批人id
39
+ * @type {number}
40
+ * @memberof MaintenanceOrderApprovalConfigEntity
41
+ */
42
+ 'approverId'?: number;
43
+ /**
44
+ * 审批人编号
45
+ * @type {string}
46
+ * @memberof MaintenanceOrderApprovalConfigEntity
47
+ */
48
+ 'approverNo'?: string;
49
+ /**
50
+ *
51
+ * @type {MaintenanceOrderApprovalStatusEnum}
52
+ * @memberof MaintenanceOrderApprovalConfigEntity
53
+ */
54
+ 'status'?: MaintenanceOrderApprovalStatusEnum;
55
+ /**
56
+ * 审批时间
57
+ * @type {string}
58
+ * @memberof MaintenanceOrderApprovalConfigEntity
59
+ */
60
+ 'approveTime'?: string;
61
+ /**
62
+ * 备注
63
+ * @type {string}
64
+ * @memberof MaintenanceOrderApprovalConfigEntity
65
+ */
66
+ 'remark'?: string;
67
+ /**
68
+ * 消息推送状态 0:未推送 1:已推送
69
+ * @type {number}
70
+ * @memberof MaintenanceOrderApprovalConfigEntity
71
+ */
72
+ 'pushStatus'?: number;
73
+ /**
74
+ * h-work创建的代办消息任务ID
75
+ * @type {string}
76
+ * @memberof MaintenanceOrderApprovalConfigEntity
77
+ */
78
+ 'taskId'?: string;
79
+ /**
80
+ * 是否为当前审批节点
81
+ * @type {boolean}
82
+ * @memberof MaintenanceOrderApprovalConfigEntity
83
+ */
84
+ 'isCurrent'?: boolean;
85
+ /**
86
+ * 创建人id
87
+ * @type {number}
88
+ * @memberof MaintenanceOrderApprovalConfigEntity
89
+ */
90
+ 'createUserId'?: number;
91
+ /**
92
+ * 修改人id
93
+ * @type {number}
94
+ * @memberof MaintenanceOrderApprovalConfigEntity
95
+ */
96
+ 'updateUserId'?: number;
97
+ /**
98
+ * 创建时间
99
+ * @type {string}
100
+ * @memberof MaintenanceOrderApprovalConfigEntity
101
+ */
102
+ 'createTime'?: string;
103
+ /**
104
+ * 修改时间
105
+ * @type {string}
106
+ * @memberof MaintenanceOrderApprovalConfigEntity
107
+ */
108
+ 'updateTime'?: string;
109
+ /**
110
+ * 是否删除 0:已删除 1:未删除
111
+ * @type {number}
112
+ * @memberof MaintenanceOrderApprovalConfigEntity
113
+ */
114
+ 'isDelete'?: number;
115
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,30 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 修缮单审批接口
14
+ * @export
15
+ * @interface MaintenanceOrderApprovalDto
16
+ */
17
+ export interface MaintenanceOrderApprovalDto {
18
+ /**
19
+ * 审批结果:true-同意,false-拒绝
20
+ * @type {boolean}
21
+ * @memberof MaintenanceOrderApprovalDto
22
+ */
23
+ 'decision'?: boolean;
24
+ /**
25
+ * 拒绝原因(decision=2 时必填)
26
+ * @type {string}
27
+ * @memberof MaintenanceOrderApprovalDto
28
+ */
29
+ 'rejectReason'?: string;
30
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,22 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 审批状态
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare const MaintenanceOrderApprovalStatusEnum: {
18
+ readonly Pending: "PENDING";
19
+ readonly Approve: "APPROVE";
20
+ readonly Reject: "REJECT";
21
+ };
22
+ export type MaintenanceOrderApprovalStatusEnum = typeof MaintenanceOrderApprovalStatusEnum[keyof typeof MaintenanceOrderApprovalStatusEnum];
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.MaintenanceOrderApprovalStatusEnum = void 0;
17
+ /**
18
+ * 审批状态
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.MaintenanceOrderApprovalStatusEnum = {
23
+ Pending: 'PENDING',
24
+ Approve: 'APPROVE',
25
+ Reject: 'REJECT'
26
+ };
@@ -0,0 +1,23 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 操作类型
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare const MaintenanceOrderOperateTypeEnum: {
18
+ readonly Submit: "SUBMIT";
19
+ readonly Approve: "APPROVE";
20
+ readonly Reject: "REJECT";
21
+ readonly UpdatePlan: "UPDATE_PLAN";
22
+ };
23
+ export type MaintenanceOrderOperateTypeEnum = typeof MaintenanceOrderOperateTypeEnum[keyof typeof MaintenanceOrderOperateTypeEnum];
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.MaintenanceOrderOperateTypeEnum = void 0;
17
+ /**
18
+ * 操作类型
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.MaintenanceOrderOperateTypeEnum = {
23
+ Submit: 'SUBMIT',
24
+ Approve: 'APPROVE',
25
+ Reject: 'REJECT',
26
+ UpdatePlan: 'UPDATE_PLAN'
27
+ };
@@ -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 {number}
380
+ * @type {string}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cuserId'?: number;
383
+ 'cid'?: string;
384
384
  /**
385
385
  *
386
- * @type {string}
386
+ * @type {number}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cid'?: string;
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
  };