@gizone/rrs-client 3.11.12-alpha.47 → 3.11.12-alpha.48

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.
@@ -890,6 +890,7 @@ models/work-order-push-settings-save-or-update-vo.ts
890
890
  models/work-order-push-settings-vo.ts
891
891
  models/work-order-report-vo.ts
892
892
  models/work-order-search-dto.ts
893
+ models/work-order-settings-type-enum.ts
893
894
  models/work-order-source-enum.ts
894
895
  models/work-order-spot-check-vo.ts
895
896
  models/work-order-staging-data-vo.ts
@@ -830,6 +830,7 @@ export * from './work-order-push-settings-save-or-update-vo';
830
830
  export * from './work-order-push-settings-vo';
831
831
  export * from './work-order-report-vo';
832
832
  export * from './work-order-search-dto';
833
+ export * from './work-order-settings-type-enum';
833
834
  export * from './work-order-source-enum';
834
835
  export * from './work-order-spot-check-vo';
835
836
  export * from './work-order-staging-data-vo';
@@ -830,6 +830,7 @@ export * from './work-order-push-settings-save-or-update-vo';
830
830
  export * from './work-order-push-settings-vo';
831
831
  export * from './work-order-report-vo';
832
832
  export * from './work-order-search-dto';
833
+ export * from './work-order-settings-type-enum';
833
834
  export * from './work-order-source-enum';
834
835
  export * from './work-order-spot-check-vo';
835
836
  export * from './work-order-staging-data-vo';
@@ -249,6 +249,12 @@ export interface WorkOrderDetailDTO {
249
249
  * @memberof WorkOrderDetailDTO
250
250
  */
251
251
  'handlerId'?: number;
252
+ /**
253
+ * 处理人id
254
+ * @type {number}
255
+ * @memberof WorkOrderDetailDTO
256
+ */
257
+ 'handlerUserId'?: number;
252
258
  /**
253
259
  * 预计执行时间
254
260
  * @type {number}
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { WorkOrderSettingsTypeEnum } from './work-order-settings-type-enum';
12
13
  /**
13
14
  * 返回数据,可以是任意类型的值
14
15
  * @export
@@ -28,11 +29,11 @@ export interface WorkOrderPushSettingsEntity {
28
29
  */
29
30
  'parkId'?: number;
30
31
  /**
31
- * 类型
32
- * @type {string}
32
+ *
33
+ * @type {WorkOrderSettingsTypeEnum}
33
34
  * @memberof WorkOrderPushSettingsEntity
34
35
  */
35
- 'type'?: WorkOrderPushSettingsEntityTypeEnum;
36
+ 'type'?: WorkOrderSettingsTypeEnum;
36
37
  /**
37
38
  * 查看部门
38
39
  * @type {Array<number>}
@@ -88,17 +89,3 @@ export interface WorkOrderPushSettingsEntity {
88
89
  */
89
90
  'roleIds'?: Array<number>;
90
91
  }
91
- export declare const WorkOrderPushSettingsEntityTypeEnum: {
92
- readonly RepairWorkOrder: "REPAIR_WORK_ORDER";
93
- readonly InspectionWorkOrder: "INSPECTION_WORK_ORDER";
94
- readonly AiWorkOrder: "AI_WORK_ORDER";
95
- readonly MaintenanceWorkOrder: "MAINTENANCE_WORK_ORDER";
96
- readonly TranscriptionWorkOrder: "TRANSCRIPTION_WORK_ORDER";
97
- readonly FireFightingWorkOrder: "FIRE_FIGHTING_WORK_ORDER";
98
- readonly InternetOfThingsWorkOrder: "INTERNET_OF_THINGS_WORK_ORDER";
99
- readonly VideoRecognitionWorkOrder: "VIDEO_RECOGNITION_WORK_ORDER";
100
- readonly DecorationOrderProperty: "DECORATION_ORDER_PROPERTY";
101
- readonly DecorationOrderTenant: "DECORATION_ORDER_TENANT";
102
- readonly DecorationOrderSupplier: "DECORATION_ORDER_SUPPLIER";
103
- };
104
- export type WorkOrderPushSettingsEntityTypeEnum = typeof WorkOrderPushSettingsEntityTypeEnum[keyof typeof WorkOrderPushSettingsEntityTypeEnum];
@@ -11,16 +11,4 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- export const WorkOrderPushSettingsEntityTypeEnum = {
15
- RepairWorkOrder: 'REPAIR_WORK_ORDER',
16
- InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
17
- AiWorkOrder: 'AI_WORK_ORDER',
18
- MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
19
- TranscriptionWorkOrder: 'TRANSCRIPTION_WORK_ORDER',
20
- FireFightingWorkOrder: 'FIRE_FIGHTING_WORK_ORDER',
21
- InternetOfThingsWorkOrder: 'INTERNET_OF_THINGS_WORK_ORDER',
22
- VideoRecognitionWorkOrder: 'VIDEO_RECOGNITION_WORK_ORDER',
23
- DecorationOrderProperty: 'DECORATION_ORDER_PROPERTY',
24
- DecorationOrderTenant: 'DECORATION_ORDER_TENANT',
25
- DecorationOrderSupplier: 'DECORATION_ORDER_SUPPLIER'
26
- };
14
+ export {};
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { WorkOrderSettingsTypeEnum } from './work-order-settings-type-enum';
12
13
  /**
13
14
  * 添加或修改工单推送
14
15
  * @export
@@ -28,11 +29,11 @@ export interface WorkOrderPushSettingsSaveOrUpdateVO {
28
29
  */
29
30
  'parkId'?: number;
30
31
  /**
31
- * 类型
32
- * @type {string}
32
+ *
33
+ * @type {WorkOrderSettingsTypeEnum}
33
34
  * @memberof WorkOrderPushSettingsSaveOrUpdateVO
34
35
  */
35
- 'type'?: WorkOrderPushSettingsSaveOrUpdateVOTypeEnum;
36
+ 'type'?: WorkOrderSettingsTypeEnum;
36
37
  /**
37
38
  * 查看部门
38
39
  * @type {Array<number>}
@@ -76,17 +77,3 @@ export interface WorkOrderPushSettingsSaveOrUpdateVO {
76
77
  */
77
78
  'roleIds'?: Array<number>;
78
79
  }
79
- export declare const WorkOrderPushSettingsSaveOrUpdateVOTypeEnum: {
80
- readonly RepairWorkOrder: "REPAIR_WORK_ORDER";
81
- readonly InspectionWorkOrder: "INSPECTION_WORK_ORDER";
82
- readonly AiWorkOrder: "AI_WORK_ORDER";
83
- readonly MaintenanceWorkOrder: "MAINTENANCE_WORK_ORDER";
84
- readonly TranscriptionWorkOrder: "TRANSCRIPTION_WORK_ORDER";
85
- readonly FireFightingWorkOrder: "FIRE_FIGHTING_WORK_ORDER";
86
- readonly InternetOfThingsWorkOrder: "INTERNET_OF_THINGS_WORK_ORDER";
87
- readonly VideoRecognitionWorkOrder: "VIDEO_RECOGNITION_WORK_ORDER";
88
- readonly DecorationOrderProperty: "DECORATION_ORDER_PROPERTY";
89
- readonly DecorationOrderTenant: "DECORATION_ORDER_TENANT";
90
- readonly DecorationOrderSupplier: "DECORATION_ORDER_SUPPLIER";
91
- };
92
- export type WorkOrderPushSettingsSaveOrUpdateVOTypeEnum = typeof WorkOrderPushSettingsSaveOrUpdateVOTypeEnum[keyof typeof WorkOrderPushSettingsSaveOrUpdateVOTypeEnum];
@@ -11,16 +11,4 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- export const WorkOrderPushSettingsSaveOrUpdateVOTypeEnum = {
15
- RepairWorkOrder: 'REPAIR_WORK_ORDER',
16
- InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
17
- AiWorkOrder: 'AI_WORK_ORDER',
18
- MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
19
- TranscriptionWorkOrder: 'TRANSCRIPTION_WORK_ORDER',
20
- FireFightingWorkOrder: 'FIRE_FIGHTING_WORK_ORDER',
21
- InternetOfThingsWorkOrder: 'INTERNET_OF_THINGS_WORK_ORDER',
22
- VideoRecognitionWorkOrder: 'VIDEO_RECOGNITION_WORK_ORDER',
23
- DecorationOrderProperty: 'DECORATION_ORDER_PROPERTY',
24
- DecorationOrderTenant: 'DECORATION_ORDER_TENANT',
25
- DecorationOrderSupplier: 'DECORATION_ORDER_SUPPLIER'
26
- };
14
+ export {};
@@ -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
+ * @enum {string}
16
+ */
17
+ export declare const WorkOrderSettingsTypeEnum: {
18
+ readonly RepairWorkOrder: "REPAIR_WORK_ORDER";
19
+ readonly InspectionWorkOrder: "INSPECTION_WORK_ORDER";
20
+ readonly AiWorkOrder: "AI_WORK_ORDER";
21
+ readonly MaintenanceWorkOrder: "MAINTENANCE_WORK_ORDER";
22
+ readonly TranscriptionWorkOrder: "TRANSCRIPTION_WORK_ORDER";
23
+ readonly FireFightingWorkOrder: "FIRE_FIGHTING_WORK_ORDER";
24
+ readonly InternetOfThingsWorkOrder: "INTERNET_OF_THINGS_WORK_ORDER";
25
+ readonly VideoRecognitionWorkOrder: "VIDEO_RECOGNITION_WORK_ORDER";
26
+ readonly DecorationOrderProperty: "DECORATION_ORDER_PROPERTY";
27
+ readonly DecorationOrderTenant: "DECORATION_ORDER_TENANT";
28
+ readonly DecorationOrderSupplier: "DECORATION_ORDER_SUPPLIER";
29
+ };
30
+ export type WorkOrderSettingsTypeEnum = typeof WorkOrderSettingsTypeEnum[keyof typeof WorkOrderSettingsTypeEnum];
@@ -0,0 +1,31 @@
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 WorkOrderSettingsTypeEnum = {
20
+ RepairWorkOrder: 'REPAIR_WORK_ORDER',
21
+ InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
22
+ AiWorkOrder: 'AI_WORK_ORDER',
23
+ MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
24
+ TranscriptionWorkOrder: 'TRANSCRIPTION_WORK_ORDER',
25
+ FireFightingWorkOrder: 'FIRE_FIGHTING_WORK_ORDER',
26
+ InternetOfThingsWorkOrder: 'INTERNET_OF_THINGS_WORK_ORDER',
27
+ VideoRecognitionWorkOrder: 'VIDEO_RECOGNITION_WORK_ORDER',
28
+ DecorationOrderProperty: 'DECORATION_ORDER_PROPERTY',
29
+ DecorationOrderTenant: 'DECORATION_ORDER_TENANT',
30
+ DecorationOrderSupplier: 'DECORATION_ORDER_SUPPLIER'
31
+ };
@@ -830,6 +830,7 @@ export * from './work-order-push-settings-save-or-update-vo';
830
830
  export * from './work-order-push-settings-vo';
831
831
  export * from './work-order-report-vo';
832
832
  export * from './work-order-search-dto';
833
+ export * from './work-order-settings-type-enum';
833
834
  export * from './work-order-source-enum';
834
835
  export * from './work-order-spot-check-vo';
835
836
  export * from './work-order-staging-data-vo';
@@ -846,6 +846,7 @@ __exportStar(require("./work-order-push-settings-save-or-update-vo"), exports);
846
846
  __exportStar(require("./work-order-push-settings-vo"), exports);
847
847
  __exportStar(require("./work-order-report-vo"), exports);
848
848
  __exportStar(require("./work-order-search-dto"), exports);
849
+ __exportStar(require("./work-order-settings-type-enum"), exports);
849
850
  __exportStar(require("./work-order-source-enum"), exports);
850
851
  __exportStar(require("./work-order-spot-check-vo"), exports);
851
852
  __exportStar(require("./work-order-staging-data-vo"), exports);
@@ -249,6 +249,12 @@ export interface WorkOrderDetailDTO {
249
249
  * @memberof WorkOrderDetailDTO
250
250
  */
251
251
  'handlerId'?: number;
252
+ /**
253
+ * 处理人id
254
+ * @type {number}
255
+ * @memberof WorkOrderDetailDTO
256
+ */
257
+ 'handlerUserId'?: number;
252
258
  /**
253
259
  * 预计执行时间
254
260
  * @type {number}
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { WorkOrderSettingsTypeEnum } from './work-order-settings-type-enum';
12
13
  /**
13
14
  * 返回数据,可以是任意类型的值
14
15
  * @export
@@ -28,11 +29,11 @@ export interface WorkOrderPushSettingsEntity {
28
29
  */
29
30
  'parkId'?: number;
30
31
  /**
31
- * 类型
32
- * @type {string}
32
+ *
33
+ * @type {WorkOrderSettingsTypeEnum}
33
34
  * @memberof WorkOrderPushSettingsEntity
34
35
  */
35
- 'type'?: WorkOrderPushSettingsEntityTypeEnum;
36
+ 'type'?: WorkOrderSettingsTypeEnum;
36
37
  /**
37
38
  * 查看部门
38
39
  * @type {Array<number>}
@@ -88,17 +89,3 @@ export interface WorkOrderPushSettingsEntity {
88
89
  */
89
90
  'roleIds'?: Array<number>;
90
91
  }
91
- export declare const WorkOrderPushSettingsEntityTypeEnum: {
92
- readonly RepairWorkOrder: "REPAIR_WORK_ORDER";
93
- readonly InspectionWorkOrder: "INSPECTION_WORK_ORDER";
94
- readonly AiWorkOrder: "AI_WORK_ORDER";
95
- readonly MaintenanceWorkOrder: "MAINTENANCE_WORK_ORDER";
96
- readonly TranscriptionWorkOrder: "TRANSCRIPTION_WORK_ORDER";
97
- readonly FireFightingWorkOrder: "FIRE_FIGHTING_WORK_ORDER";
98
- readonly InternetOfThingsWorkOrder: "INTERNET_OF_THINGS_WORK_ORDER";
99
- readonly VideoRecognitionWorkOrder: "VIDEO_RECOGNITION_WORK_ORDER";
100
- readonly DecorationOrderProperty: "DECORATION_ORDER_PROPERTY";
101
- readonly DecorationOrderTenant: "DECORATION_ORDER_TENANT";
102
- readonly DecorationOrderSupplier: "DECORATION_ORDER_SUPPLIER";
103
- };
104
- export type WorkOrderPushSettingsEntityTypeEnum = typeof WorkOrderPushSettingsEntityTypeEnum[keyof typeof WorkOrderPushSettingsEntityTypeEnum];
@@ -13,17 +13,3 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.WorkOrderPushSettingsEntityTypeEnum = void 0;
17
- exports.WorkOrderPushSettingsEntityTypeEnum = {
18
- RepairWorkOrder: 'REPAIR_WORK_ORDER',
19
- InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
20
- AiWorkOrder: 'AI_WORK_ORDER',
21
- MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
22
- TranscriptionWorkOrder: 'TRANSCRIPTION_WORK_ORDER',
23
- FireFightingWorkOrder: 'FIRE_FIGHTING_WORK_ORDER',
24
- InternetOfThingsWorkOrder: 'INTERNET_OF_THINGS_WORK_ORDER',
25
- VideoRecognitionWorkOrder: 'VIDEO_RECOGNITION_WORK_ORDER',
26
- DecorationOrderProperty: 'DECORATION_ORDER_PROPERTY',
27
- DecorationOrderTenant: 'DECORATION_ORDER_TENANT',
28
- DecorationOrderSupplier: 'DECORATION_ORDER_SUPPLIER'
29
- };
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { WorkOrderSettingsTypeEnum } from './work-order-settings-type-enum';
12
13
  /**
13
14
  * 添加或修改工单推送
14
15
  * @export
@@ -28,11 +29,11 @@ export interface WorkOrderPushSettingsSaveOrUpdateVO {
28
29
  */
29
30
  'parkId'?: number;
30
31
  /**
31
- * 类型
32
- * @type {string}
32
+ *
33
+ * @type {WorkOrderSettingsTypeEnum}
33
34
  * @memberof WorkOrderPushSettingsSaveOrUpdateVO
34
35
  */
35
- 'type'?: WorkOrderPushSettingsSaveOrUpdateVOTypeEnum;
36
+ 'type'?: WorkOrderSettingsTypeEnum;
36
37
  /**
37
38
  * 查看部门
38
39
  * @type {Array<number>}
@@ -76,17 +77,3 @@ export interface WorkOrderPushSettingsSaveOrUpdateVO {
76
77
  */
77
78
  'roleIds'?: Array<number>;
78
79
  }
79
- export declare const WorkOrderPushSettingsSaveOrUpdateVOTypeEnum: {
80
- readonly RepairWorkOrder: "REPAIR_WORK_ORDER";
81
- readonly InspectionWorkOrder: "INSPECTION_WORK_ORDER";
82
- readonly AiWorkOrder: "AI_WORK_ORDER";
83
- readonly MaintenanceWorkOrder: "MAINTENANCE_WORK_ORDER";
84
- readonly TranscriptionWorkOrder: "TRANSCRIPTION_WORK_ORDER";
85
- readonly FireFightingWorkOrder: "FIRE_FIGHTING_WORK_ORDER";
86
- readonly InternetOfThingsWorkOrder: "INTERNET_OF_THINGS_WORK_ORDER";
87
- readonly VideoRecognitionWorkOrder: "VIDEO_RECOGNITION_WORK_ORDER";
88
- readonly DecorationOrderProperty: "DECORATION_ORDER_PROPERTY";
89
- readonly DecorationOrderTenant: "DECORATION_ORDER_TENANT";
90
- readonly DecorationOrderSupplier: "DECORATION_ORDER_SUPPLIER";
91
- };
92
- export type WorkOrderPushSettingsSaveOrUpdateVOTypeEnum = typeof WorkOrderPushSettingsSaveOrUpdateVOTypeEnum[keyof typeof WorkOrderPushSettingsSaveOrUpdateVOTypeEnum];
@@ -13,17 +13,3 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.WorkOrderPushSettingsSaveOrUpdateVOTypeEnum = void 0;
17
- exports.WorkOrderPushSettingsSaveOrUpdateVOTypeEnum = {
18
- RepairWorkOrder: 'REPAIR_WORK_ORDER',
19
- InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
20
- AiWorkOrder: 'AI_WORK_ORDER',
21
- MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
22
- TranscriptionWorkOrder: 'TRANSCRIPTION_WORK_ORDER',
23
- FireFightingWorkOrder: 'FIRE_FIGHTING_WORK_ORDER',
24
- InternetOfThingsWorkOrder: 'INTERNET_OF_THINGS_WORK_ORDER',
25
- VideoRecognitionWorkOrder: 'VIDEO_RECOGNITION_WORK_ORDER',
26
- DecorationOrderProperty: 'DECORATION_ORDER_PROPERTY',
27
- DecorationOrderTenant: 'DECORATION_ORDER_TENANT',
28
- DecorationOrderSupplier: 'DECORATION_ORDER_SUPPLIER'
29
- };
@@ -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
+ * @enum {string}
16
+ */
17
+ export declare const WorkOrderSettingsTypeEnum: {
18
+ readonly RepairWorkOrder: "REPAIR_WORK_ORDER";
19
+ readonly InspectionWorkOrder: "INSPECTION_WORK_ORDER";
20
+ readonly AiWorkOrder: "AI_WORK_ORDER";
21
+ readonly MaintenanceWorkOrder: "MAINTENANCE_WORK_ORDER";
22
+ readonly TranscriptionWorkOrder: "TRANSCRIPTION_WORK_ORDER";
23
+ readonly FireFightingWorkOrder: "FIRE_FIGHTING_WORK_ORDER";
24
+ readonly InternetOfThingsWorkOrder: "INTERNET_OF_THINGS_WORK_ORDER";
25
+ readonly VideoRecognitionWorkOrder: "VIDEO_RECOGNITION_WORK_ORDER";
26
+ readonly DecorationOrderProperty: "DECORATION_ORDER_PROPERTY";
27
+ readonly DecorationOrderTenant: "DECORATION_ORDER_TENANT";
28
+ readonly DecorationOrderSupplier: "DECORATION_ORDER_SUPPLIER";
29
+ };
30
+ export type WorkOrderSettingsTypeEnum = typeof WorkOrderSettingsTypeEnum[keyof typeof WorkOrderSettingsTypeEnum];
@@ -0,0 +1,34 @@
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.WorkOrderSettingsTypeEnum = void 0;
17
+ /**
18
+ * 类型
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.WorkOrderSettingsTypeEnum = {
23
+ RepairWorkOrder: 'REPAIR_WORK_ORDER',
24
+ InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
25
+ AiWorkOrder: 'AI_WORK_ORDER',
26
+ MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
27
+ TranscriptionWorkOrder: 'TRANSCRIPTION_WORK_ORDER',
28
+ FireFightingWorkOrder: 'FIRE_FIGHTING_WORK_ORDER',
29
+ InternetOfThingsWorkOrder: 'INTERNET_OF_THINGS_WORK_ORDER',
30
+ VideoRecognitionWorkOrder: 'VIDEO_RECOGNITION_WORK_ORDER',
31
+ DecorationOrderProperty: 'DECORATION_ORDER_PROPERTY',
32
+ DecorationOrderTenant: 'DECORATION_ORDER_TENANT',
33
+ DecorationOrderSupplier: 'DECORATION_ORDER_SUPPLIER'
34
+ };
package/models/index.ts CHANGED
@@ -830,6 +830,7 @@ export * from './work-order-push-settings-save-or-update-vo';
830
830
  export * from './work-order-push-settings-vo';
831
831
  export * from './work-order-report-vo';
832
832
  export * from './work-order-search-dto';
833
+ export * from './work-order-settings-type-enum';
833
834
  export * from './work-order-source-enum';
834
835
  export * from './work-order-spot-check-vo';
835
836
  export * from './work-order-staging-data-vo';
@@ -278,6 +278,12 @@ export interface WorkOrderDetailDTO {
278
278
  * @memberof WorkOrderDetailDTO
279
279
  */
280
280
  'handlerId'?: number;
281
+ /**
282
+ * 处理人id
283
+ * @type {number}
284
+ * @memberof WorkOrderDetailDTO
285
+ */
286
+ 'handlerUserId'?: number;
281
287
  /**
282
288
  * 预计执行时间
283
289
  * @type {number}
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { WorkOrderSettingsTypeEnum } from './work-order-settings-type-enum';
16
19
 
17
20
  /**
18
21
  * 返回数据,可以是任意类型的值
@@ -33,11 +36,11 @@ export interface WorkOrderPushSettingsEntity {
33
36
  */
34
37
  'parkId'?: number;
35
38
  /**
36
- * 类型
37
- * @type {string}
39
+ *
40
+ * @type {WorkOrderSettingsTypeEnum}
38
41
  * @memberof WorkOrderPushSettingsEntity
39
42
  */
40
- 'type'?: WorkOrderPushSettingsEntityTypeEnum;
43
+ 'type'?: WorkOrderSettingsTypeEnum;
41
44
  /**
42
45
  * 查看部门
43
46
  * @type {Array<number>}
@@ -94,20 +97,5 @@ export interface WorkOrderPushSettingsEntity {
94
97
  'roleIds'?: Array<number>;
95
98
  }
96
99
 
97
- export const WorkOrderPushSettingsEntityTypeEnum = {
98
- RepairWorkOrder: 'REPAIR_WORK_ORDER',
99
- InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
100
- AiWorkOrder: 'AI_WORK_ORDER',
101
- MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
102
- TranscriptionWorkOrder: 'TRANSCRIPTION_WORK_ORDER',
103
- FireFightingWorkOrder: 'FIRE_FIGHTING_WORK_ORDER',
104
- InternetOfThingsWorkOrder: 'INTERNET_OF_THINGS_WORK_ORDER',
105
- VideoRecognitionWorkOrder: 'VIDEO_RECOGNITION_WORK_ORDER',
106
- DecorationOrderProperty: 'DECORATION_ORDER_PROPERTY',
107
- DecorationOrderTenant: 'DECORATION_ORDER_TENANT',
108
- DecorationOrderSupplier: 'DECORATION_ORDER_SUPPLIER'
109
- } as const;
110
-
111
- export type WorkOrderPushSettingsEntityTypeEnum = typeof WorkOrderPushSettingsEntityTypeEnum[keyof typeof WorkOrderPushSettingsEntityTypeEnum];
112
100
 
113
101
 
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { WorkOrderSettingsTypeEnum } from './work-order-settings-type-enum';
16
19
 
17
20
  /**
18
21
  * 添加或修改工单推送
@@ -33,11 +36,11 @@ export interface WorkOrderPushSettingsSaveOrUpdateVO {
33
36
  */
34
37
  'parkId'?: number;
35
38
  /**
36
- * 类型
37
- * @type {string}
39
+ *
40
+ * @type {WorkOrderSettingsTypeEnum}
38
41
  * @memberof WorkOrderPushSettingsSaveOrUpdateVO
39
42
  */
40
- 'type'?: WorkOrderPushSettingsSaveOrUpdateVOTypeEnum;
43
+ 'type'?: WorkOrderSettingsTypeEnum;
41
44
  /**
42
45
  * 查看部门
43
46
  * @type {Array<number>}
@@ -82,20 +85,5 @@ export interface WorkOrderPushSettingsSaveOrUpdateVO {
82
85
  'roleIds'?: Array<number>;
83
86
  }
84
87
 
85
- export const WorkOrderPushSettingsSaveOrUpdateVOTypeEnum = {
86
- RepairWorkOrder: 'REPAIR_WORK_ORDER',
87
- InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
88
- AiWorkOrder: 'AI_WORK_ORDER',
89
- MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
90
- TranscriptionWorkOrder: 'TRANSCRIPTION_WORK_ORDER',
91
- FireFightingWorkOrder: 'FIRE_FIGHTING_WORK_ORDER',
92
- InternetOfThingsWorkOrder: 'INTERNET_OF_THINGS_WORK_ORDER',
93
- VideoRecognitionWorkOrder: 'VIDEO_RECOGNITION_WORK_ORDER',
94
- DecorationOrderProperty: 'DECORATION_ORDER_PROPERTY',
95
- DecorationOrderTenant: 'DECORATION_ORDER_TENANT',
96
- DecorationOrderSupplier: 'DECORATION_ORDER_SUPPLIER'
97
- } as const;
98
-
99
- export type WorkOrderPushSettingsSaveOrUpdateVOTypeEnum = typeof WorkOrderPushSettingsSaveOrUpdateVOTypeEnum[keyof typeof WorkOrderPushSettingsSaveOrUpdateVOTypeEnum];
100
88
 
101
89
 
@@ -0,0 +1,40 @@
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 WorkOrderSettingsTypeEnum = {
24
+ RepairWorkOrder: 'REPAIR_WORK_ORDER',
25
+ InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
26
+ AiWorkOrder: 'AI_WORK_ORDER',
27
+ MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
28
+ TranscriptionWorkOrder: 'TRANSCRIPTION_WORK_ORDER',
29
+ FireFightingWorkOrder: 'FIRE_FIGHTING_WORK_ORDER',
30
+ InternetOfThingsWorkOrder: 'INTERNET_OF_THINGS_WORK_ORDER',
31
+ VideoRecognitionWorkOrder: 'VIDEO_RECOGNITION_WORK_ORDER',
32
+ DecorationOrderProperty: 'DECORATION_ORDER_PROPERTY',
33
+ DecorationOrderTenant: 'DECORATION_ORDER_TENANT',
34
+ DecorationOrderSupplier: 'DECORATION_ORDER_SUPPLIER'
35
+ } as const;
36
+
37
+ export type WorkOrderSettingsTypeEnum = typeof WorkOrderSettingsTypeEnum[keyof typeof WorkOrderSettingsTypeEnum];
38
+
39
+
40
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "3.11.12-alpha.47",
3
+ "version": "3.11.12-alpha.48",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {