@gizone/rrs-client 4.1.2-alpha.171 → 4.1.2-alpha.173

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 (38) hide show
  1. package/.openapi-generator/FILES +1 -0
  2. package/apis/work-order-api.ts +106 -52
  3. package/dist/apis/work-order-api.d.ts +63 -30
  4. package/dist/apis/work-order-api.js +55 -35
  5. package/dist/esm/apis/work-order-api.d.ts +63 -30
  6. package/dist/esm/apis/work-order-api.js +55 -35
  7. package/dist/esm/models/get-user-wx200-response.d.ts +8 -8
  8. package/dist/esm/models/index.d.ts +1 -0
  9. package/dist/esm/models/index.js +1 -0
  10. package/dist/esm/models/period-detail-resp.d.ts +7 -0
  11. package/dist/esm/models/plan-add-vo.d.ts +7 -0
  12. package/dist/esm/models/plan-detail-dto.d.ts +7 -0
  13. package/dist/esm/models/plan-edit-vo.d.ts +7 -0
  14. package/dist/esm/models/plan-search-dto.d.ts +7 -0
  15. package/dist/esm/models/work-order-search-dto.d.ts +7 -0
  16. package/dist/esm/models/work-order-type-subcategory-enum.d.ts +31 -0
  17. package/dist/esm/models/work-order-type-subcategory-enum.js +32 -0
  18. package/dist/models/get-user-wx200-response.d.ts +8 -8
  19. package/dist/models/index.d.ts +1 -0
  20. package/dist/models/index.js +1 -0
  21. package/dist/models/period-detail-resp.d.ts +7 -0
  22. package/dist/models/plan-add-vo.d.ts +7 -0
  23. package/dist/models/plan-detail-dto.d.ts +7 -0
  24. package/dist/models/plan-edit-vo.d.ts +7 -0
  25. package/dist/models/plan-search-dto.d.ts +7 -0
  26. package/dist/models/work-order-search-dto.d.ts +7 -0
  27. package/dist/models/work-order-type-subcategory-enum.d.ts +31 -0
  28. package/dist/models/work-order-type-subcategory-enum.js +35 -0
  29. package/models/get-user-wx200-response.ts +8 -8
  30. package/models/index.ts +1 -0
  31. package/models/period-detail-resp.ts +9 -0
  32. package/models/plan-add-vo.ts +9 -0
  33. package/models/plan-detail-dto.ts +9 -0
  34. package/models/plan-edit-vo.ts +9 -0
  35. package/models/plan-search-dto.ts +9 -0
  36. package/models/work-order-search-dto.ts +9 -0
  37. package/models/work-order-type-subcategory-enum.ts +41 -0
  38. package/package.json +1 -1
@@ -14,6 +14,7 @@ import type { InspectionPoint } from './inspection-point';
14
14
  import type { WorkOrderDeptDTO } from './work-order-dept-dto';
15
15
  import type { WorkOrderStatusEnum } from './work-order-status-enum';
16
16
  import type { WorkOrderTypeEnum } from './work-order-type-enum';
17
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
17
18
  /**
18
19
  * 周期工单响应参数
19
20
  * @export
@@ -194,6 +195,12 @@ export interface PeriodDetailResp {
194
195
  * @memberof PeriodDetailResp
195
196
  */
196
197
  'workOrderDeptIds'?: Array<number>;
198
+ /**
199
+ *
200
+ * @type {WorkOrderTypeSubcategoryEnum}
201
+ * @memberof PeriodDetailResp
202
+ */
203
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
197
204
  }
198
205
  export declare const PeriodDetailRespSamplingResultsEnum: {
199
206
  readonly Zero: "ZERO";
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { InspectionItemContentVo } from './inspection-item-content-vo';
13
13
  import type { PlanItemAddVo } from './plan-item-add-vo';
14
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
14
15
  /**
15
16
  * 计划工单新建请求参数
16
17
  * @export
@@ -77,6 +78,12 @@ export interface PlanAddVo {
77
78
  * @memberof PlanAddVo
78
79
  */
79
80
  'renovationId'?: number;
81
+ /**
82
+ *
83
+ * @type {WorkOrderTypeSubcategoryEnum}
84
+ * @memberof PlanAddVo
85
+ */
86
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
80
87
  }
81
88
  export declare const PlanAddVoPlanTypeEnum: {
82
89
  readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { PlanInspectionItemsDTO } from './plan-inspection-items-dto';
13
13
  import type { PlanItemEditVo } from './plan-item-edit-vo';
14
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
14
15
  /**
15
16
  * 返回数据,可以是任意类型的值
16
17
  * @export
@@ -89,6 +90,12 @@ export interface PlanDetailDTO {
89
90
  * @memberof PlanDetailDTO
90
91
  */
91
92
  'assigneeName'?: string;
93
+ /**
94
+ *
95
+ * @type {WorkOrderTypeSubcategoryEnum}
96
+ * @memberof PlanDetailDTO
97
+ */
98
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
92
99
  }
93
100
  export declare const PlanDetailDTOPlanTypeEnum: {
94
101
  readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { InspectionItemContentVo } from './inspection-item-content-vo';
13
13
  import type { PlanItemEditVo } from './plan-item-edit-vo';
14
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
14
15
  /**
15
16
  * 计划工单编辑请求参数
16
17
  * @export
@@ -65,6 +66,12 @@ export interface PlanEditVo {
65
66
  * @memberof PlanEditVo
66
67
  */
67
68
  'inspectionItemContents': Array<InspectionItemContentVo>;
69
+ /**
70
+ *
71
+ * @type {WorkOrderTypeSubcategoryEnum}
72
+ * @memberof PlanEditVo
73
+ */
74
+ 'workOrderTypeSubcategory': WorkOrderTypeSubcategoryEnum;
68
75
  }
69
76
  export declare const PlanEditVoPlanTypeEnum: {
70
77
  readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { WorkOrderDeptDTO } from './work-order-dept-dto';
13
13
  import type { WorkOrderPlanRepeatsEnum } from './work-order-plan-repeats-enum';
14
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
14
15
  /**
15
16
  * 计划管理列表参数
16
17
  * @export
@@ -71,6 +72,12 @@ export interface PlanSearchDTO {
71
72
  * @memberof PlanSearchDTO
72
73
  */
73
74
  'deptIds'?: Array<number>;
75
+ /**
76
+ *
77
+ * @type {WorkOrderTypeSubcategoryEnum}
78
+ * @memberof PlanSearchDTO
79
+ */
80
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
74
81
  }
75
82
  export declare const PlanSearchDTOPlanTypeEnum: {
76
83
  readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
@@ -15,6 +15,7 @@ import type { WorkOrderHandlerDto } from './work-order-handler-dto';
15
15
  import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
16
16
  import type { WorkOrderStatusEnum } from './work-order-status-enum';
17
17
  import type { WorkOrderTypeEnum } from './work-order-type-enum';
18
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
18
19
  /**
19
20
  * 工单查询DTO
20
21
  * @export
@@ -135,6 +136,12 @@ export interface WorkOrderSearchDTO {
135
136
  * @memberof WorkOrderSearchDTO
136
137
  */
137
138
  'finishTime'?: string;
139
+ /**
140
+ *
141
+ * @type {WorkOrderTypeSubcategoryEnum}
142
+ * @memberof WorkOrderSearchDTO
143
+ */
144
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
138
145
  }
139
146
  export declare const WorkOrderSearchDTOSamplingResultsEnum: {
140
147
  readonly Zero: "ZERO";
@@ -0,0 +1,31 @@
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 WorkOrderTypeSubcategoryEnum: {
18
+ readonly MoInspection: "MO_INSPECTION";
19
+ readonly KeyAreaInspection: "KEY_AREA_INSPECTION";
20
+ readonly SmartWarehouseEquipmentInspection: "SMART_WAREHOUSE_EQUIPMENT_INSPECTION";
21
+ readonly ColdStorageEquipmentInspection: "COLD_STORAGE_EQUIPMENT_INSPECTION";
22
+ readonly BuildingEquipmentInspection: "BUILDING_EQUIPMENT_INSPECTION";
23
+ readonly SixSInspection: "SIX_S_INSPECTION";
24
+ readonly PestControlInspection: "PEST_CONTROL_INSPECTION";
25
+ readonly ElectricalInspection: "ELECTRICAL_INSPECTION";
26
+ readonly CentralControlShiftHandover: "CENTRAL_CONTROL_SHIFT_HANDOVER";
27
+ readonly BuildingEquipmentMaintenance: "BUILDING_EQUIPMENT_MAINTENANCE";
28
+ readonly SmartWarehouseEquipmentMaintenance: "SMART_WAREHOUSE_EQUIPMENT_MAINTENANCE";
29
+ readonly ColdStorageEquipmentMaintenance: "COLD_STORAGE_EQUIPMENT_MAINTENANCE";
30
+ };
31
+ export type WorkOrderTypeSubcategoryEnum = typeof WorkOrderTypeSubcategoryEnum[keyof typeof WorkOrderTypeSubcategoryEnum];
@@ -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
+ * @export
17
+ * @enum {string}
18
+ */
19
+ export const WorkOrderTypeSubcategoryEnum = {
20
+ MoInspection: 'MO_INSPECTION',
21
+ KeyAreaInspection: 'KEY_AREA_INSPECTION',
22
+ SmartWarehouseEquipmentInspection: 'SMART_WAREHOUSE_EQUIPMENT_INSPECTION',
23
+ ColdStorageEquipmentInspection: 'COLD_STORAGE_EQUIPMENT_INSPECTION',
24
+ BuildingEquipmentInspection: 'BUILDING_EQUIPMENT_INSPECTION',
25
+ SixSInspection: 'SIX_S_INSPECTION',
26
+ PestControlInspection: 'PEST_CONTROL_INSPECTION',
27
+ ElectricalInspection: 'ELECTRICAL_INSPECTION',
28
+ CentralControlShiftHandover: 'CENTRAL_CONTROL_SHIFT_HANDOVER',
29
+ BuildingEquipmentMaintenance: 'BUILDING_EQUIPMENT_MAINTENANCE',
30
+ SmartWarehouseEquipmentMaintenance: 'SMART_WAREHOUSE_EQUIPMENT_MAINTENANCE',
31
+ ColdStorageEquipmentMaintenance: 'COLD_STORAGE_EQUIPMENT_MAINTENANCE'
32
+ };
@@ -37,34 +37,34 @@ export interface GetUserWx200Response {
37
37
  'trailerFields'?: object;
38
38
  /**
39
39
  *
40
- * @type {GetUserWx200ResponseLocale}
40
+ * @type {string}
41
41
  * @memberof GetUserWx200Response
42
42
  */
43
- 'locale'?: GetUserWx200ResponseLocale;
43
+ 'contentType'?: string;
44
44
  /**
45
45
  *
46
46
  * @type {number}
47
47
  * @memberof GetUserWx200Response
48
48
  */
49
- 'bufferSize'?: number;
49
+ 'contentLength'?: number;
50
50
  /**
51
51
  *
52
- * @type {string}
52
+ * @type {GetUserWx200ResponseOutputStream}
53
53
  * @memberof GetUserWx200Response
54
54
  */
55
- 'contentType'?: string;
55
+ 'outputStream'?: GetUserWx200ResponseOutputStream;
56
56
  /**
57
57
  *
58
58
  * @type {number}
59
59
  * @memberof GetUserWx200Response
60
60
  */
61
- 'contentLength'?: number;
61
+ 'bufferSize'?: number;
62
62
  /**
63
63
  *
64
- * @type {GetUserWx200ResponseOutputStream}
64
+ * @type {GetUserWx200ResponseLocale}
65
65
  * @memberof GetUserWx200Response
66
66
  */
67
- 'outputStream'?: GetUserWx200ResponseOutputStream;
67
+ 'locale'?: GetUserWx200ResponseLocale;
68
68
  /**
69
69
  *
70
70
  * @type {string}
@@ -903,6 +903,7 @@ export * from './work-order-submit-vo';
903
903
  export * from './work-order-surveillance-dto';
904
904
  export * from './work-order-type-dto';
905
905
  export * from './work-order-type-enum';
906
+ export * from './work-order-type-subcategory-enum';
906
907
  export * from './wx-ma-user-info';
907
908
  export * from './wx-menu';
908
909
  export * from './wx-menu-button';
@@ -919,6 +919,7 @@ __exportStar(require("./work-order-submit-vo"), exports);
919
919
  __exportStar(require("./work-order-surveillance-dto"), exports);
920
920
  __exportStar(require("./work-order-type-dto"), exports);
921
921
  __exportStar(require("./work-order-type-enum"), exports);
922
+ __exportStar(require("./work-order-type-subcategory-enum"), exports);
922
923
  __exportStar(require("./wx-ma-user-info"), exports);
923
924
  __exportStar(require("./wx-menu"), exports);
924
925
  __exportStar(require("./wx-menu-button"), exports);
@@ -14,6 +14,7 @@ import type { InspectionPoint } from './inspection-point';
14
14
  import type { WorkOrderDeptDTO } from './work-order-dept-dto';
15
15
  import type { WorkOrderStatusEnum } from './work-order-status-enum';
16
16
  import type { WorkOrderTypeEnum } from './work-order-type-enum';
17
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
17
18
  /**
18
19
  * 周期工单响应参数
19
20
  * @export
@@ -194,6 +195,12 @@ export interface PeriodDetailResp {
194
195
  * @memberof PeriodDetailResp
195
196
  */
196
197
  'workOrderDeptIds'?: Array<number>;
198
+ /**
199
+ *
200
+ * @type {WorkOrderTypeSubcategoryEnum}
201
+ * @memberof PeriodDetailResp
202
+ */
203
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
197
204
  }
198
205
  export declare const PeriodDetailRespSamplingResultsEnum: {
199
206
  readonly Zero: "ZERO";
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { InspectionItemContentVo } from './inspection-item-content-vo';
13
13
  import type { PlanItemAddVo } from './plan-item-add-vo';
14
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
14
15
  /**
15
16
  * 计划工单新建请求参数
16
17
  * @export
@@ -77,6 +78,12 @@ export interface PlanAddVo {
77
78
  * @memberof PlanAddVo
78
79
  */
79
80
  'renovationId'?: number;
81
+ /**
82
+ *
83
+ * @type {WorkOrderTypeSubcategoryEnum}
84
+ * @memberof PlanAddVo
85
+ */
86
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
80
87
  }
81
88
  export declare const PlanAddVoPlanTypeEnum: {
82
89
  readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { PlanInspectionItemsDTO } from './plan-inspection-items-dto';
13
13
  import type { PlanItemEditVo } from './plan-item-edit-vo';
14
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
14
15
  /**
15
16
  * 返回数据,可以是任意类型的值
16
17
  * @export
@@ -89,6 +90,12 @@ export interface PlanDetailDTO {
89
90
  * @memberof PlanDetailDTO
90
91
  */
91
92
  'assigneeName'?: string;
93
+ /**
94
+ *
95
+ * @type {WorkOrderTypeSubcategoryEnum}
96
+ * @memberof PlanDetailDTO
97
+ */
98
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
92
99
  }
93
100
  export declare const PlanDetailDTOPlanTypeEnum: {
94
101
  readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { InspectionItemContentVo } from './inspection-item-content-vo';
13
13
  import type { PlanItemEditVo } from './plan-item-edit-vo';
14
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
14
15
  /**
15
16
  * 计划工单编辑请求参数
16
17
  * @export
@@ -65,6 +66,12 @@ export interface PlanEditVo {
65
66
  * @memberof PlanEditVo
66
67
  */
67
68
  'inspectionItemContents': Array<InspectionItemContentVo>;
69
+ /**
70
+ *
71
+ * @type {WorkOrderTypeSubcategoryEnum}
72
+ * @memberof PlanEditVo
73
+ */
74
+ 'workOrderTypeSubcategory': WorkOrderTypeSubcategoryEnum;
68
75
  }
69
76
  export declare const PlanEditVoPlanTypeEnum: {
70
77
  readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { WorkOrderDeptDTO } from './work-order-dept-dto';
13
13
  import type { WorkOrderPlanRepeatsEnum } from './work-order-plan-repeats-enum';
14
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
14
15
  /**
15
16
  * 计划管理列表参数
16
17
  * @export
@@ -71,6 +72,12 @@ export interface PlanSearchDTO {
71
72
  * @memberof PlanSearchDTO
72
73
  */
73
74
  'deptIds'?: Array<number>;
75
+ /**
76
+ *
77
+ * @type {WorkOrderTypeSubcategoryEnum}
78
+ * @memberof PlanSearchDTO
79
+ */
80
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
74
81
  }
75
82
  export declare const PlanSearchDTOPlanTypeEnum: {
76
83
  readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
@@ -15,6 +15,7 @@ import type { WorkOrderHandlerDto } from './work-order-handler-dto';
15
15
  import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
16
16
  import type { WorkOrderStatusEnum } from './work-order-status-enum';
17
17
  import type { WorkOrderTypeEnum } from './work-order-type-enum';
18
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
18
19
  /**
19
20
  * 工单查询DTO
20
21
  * @export
@@ -135,6 +136,12 @@ export interface WorkOrderSearchDTO {
135
136
  * @memberof WorkOrderSearchDTO
136
137
  */
137
138
  'finishTime'?: string;
139
+ /**
140
+ *
141
+ * @type {WorkOrderTypeSubcategoryEnum}
142
+ * @memberof WorkOrderSearchDTO
143
+ */
144
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
138
145
  }
139
146
  export declare const WorkOrderSearchDTOSamplingResultsEnum: {
140
147
  readonly Zero: "ZERO";
@@ -0,0 +1,31 @@
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 WorkOrderTypeSubcategoryEnum: {
18
+ readonly MoInspection: "MO_INSPECTION";
19
+ readonly KeyAreaInspection: "KEY_AREA_INSPECTION";
20
+ readonly SmartWarehouseEquipmentInspection: "SMART_WAREHOUSE_EQUIPMENT_INSPECTION";
21
+ readonly ColdStorageEquipmentInspection: "COLD_STORAGE_EQUIPMENT_INSPECTION";
22
+ readonly BuildingEquipmentInspection: "BUILDING_EQUIPMENT_INSPECTION";
23
+ readonly SixSInspection: "SIX_S_INSPECTION";
24
+ readonly PestControlInspection: "PEST_CONTROL_INSPECTION";
25
+ readonly ElectricalInspection: "ELECTRICAL_INSPECTION";
26
+ readonly CentralControlShiftHandover: "CENTRAL_CONTROL_SHIFT_HANDOVER";
27
+ readonly BuildingEquipmentMaintenance: "BUILDING_EQUIPMENT_MAINTENANCE";
28
+ readonly SmartWarehouseEquipmentMaintenance: "SMART_WAREHOUSE_EQUIPMENT_MAINTENANCE";
29
+ readonly ColdStorageEquipmentMaintenance: "COLD_STORAGE_EQUIPMENT_MAINTENANCE";
30
+ };
31
+ export type WorkOrderTypeSubcategoryEnum = typeof WorkOrderTypeSubcategoryEnum[keyof typeof WorkOrderTypeSubcategoryEnum];
@@ -0,0 +1,35 @@
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.WorkOrderTypeSubcategoryEnum = void 0;
17
+ /**
18
+ * 工单类型小类
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.WorkOrderTypeSubcategoryEnum = {
23
+ MoInspection: 'MO_INSPECTION',
24
+ KeyAreaInspection: 'KEY_AREA_INSPECTION',
25
+ SmartWarehouseEquipmentInspection: 'SMART_WAREHOUSE_EQUIPMENT_INSPECTION',
26
+ ColdStorageEquipmentInspection: 'COLD_STORAGE_EQUIPMENT_INSPECTION',
27
+ BuildingEquipmentInspection: 'BUILDING_EQUIPMENT_INSPECTION',
28
+ SixSInspection: 'SIX_S_INSPECTION',
29
+ PestControlInspection: 'PEST_CONTROL_INSPECTION',
30
+ ElectricalInspection: 'ELECTRICAL_INSPECTION',
31
+ CentralControlShiftHandover: 'CENTRAL_CONTROL_SHIFT_HANDOVER',
32
+ BuildingEquipmentMaintenance: 'BUILDING_EQUIPMENT_MAINTENANCE',
33
+ SmartWarehouseEquipmentMaintenance: 'SMART_WAREHOUSE_EQUIPMENT_MAINTENANCE',
34
+ ColdStorageEquipmentMaintenance: 'COLD_STORAGE_EQUIPMENT_MAINTENANCE'
35
+ };
@@ -46,34 +46,34 @@ export interface GetUserWx200Response {
46
46
  'trailerFields'?: object;
47
47
  /**
48
48
  *
49
- * @type {GetUserWx200ResponseLocale}
49
+ * @type {string}
50
50
  * @memberof GetUserWx200Response
51
51
  */
52
- 'locale'?: GetUserWx200ResponseLocale;
52
+ 'contentType'?: string;
53
53
  /**
54
54
  *
55
55
  * @type {number}
56
56
  * @memberof GetUserWx200Response
57
57
  */
58
- 'bufferSize'?: number;
58
+ 'contentLength'?: number;
59
59
  /**
60
60
  *
61
- * @type {string}
61
+ * @type {GetUserWx200ResponseOutputStream}
62
62
  * @memberof GetUserWx200Response
63
63
  */
64
- 'contentType'?: string;
64
+ 'outputStream'?: GetUserWx200ResponseOutputStream;
65
65
  /**
66
66
  *
67
67
  * @type {number}
68
68
  * @memberof GetUserWx200Response
69
69
  */
70
- 'contentLength'?: number;
70
+ 'bufferSize'?: number;
71
71
  /**
72
72
  *
73
- * @type {GetUserWx200ResponseOutputStream}
73
+ * @type {GetUserWx200ResponseLocale}
74
74
  * @memberof GetUserWx200Response
75
75
  */
76
- 'outputStream'?: GetUserWx200ResponseOutputStream;
76
+ 'locale'?: GetUserWx200ResponseLocale;
77
77
  /**
78
78
  *
79
79
  * @type {string}
package/models/index.ts CHANGED
@@ -903,6 +903,7 @@ export * from './work-order-submit-vo';
903
903
  export * from './work-order-surveillance-dto';
904
904
  export * from './work-order-type-dto';
905
905
  export * from './work-order-type-enum';
906
+ export * from './work-order-type-subcategory-enum';
906
907
  export * from './wx-ma-user-info';
907
908
  export * from './wx-menu';
908
909
  export * from './wx-menu-button';
@@ -28,6 +28,9 @@ import type { WorkOrderStatusEnum } from './work-order-status-enum';
28
28
  // May contain unused imports in some cases
29
29
  // @ts-ignore
30
30
  import type { WorkOrderTypeEnum } from './work-order-type-enum';
31
+ // May contain unused imports in some cases
32
+ // @ts-ignore
33
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
31
34
 
32
35
  /**
33
36
  * 周期工单响应参数
@@ -209,6 +212,12 @@ export interface PeriodDetailResp {
209
212
  * @memberof PeriodDetailResp
210
213
  */
211
214
  'workOrderDeptIds'?: Array<number>;
215
+ /**
216
+ *
217
+ * @type {WorkOrderTypeSubcategoryEnum}
218
+ * @memberof PeriodDetailResp
219
+ */
220
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
212
221
  }
213
222
 
214
223
  export const PeriodDetailRespSamplingResultsEnum = {
@@ -19,6 +19,9 @@ import type { InspectionItemContentVo } from './inspection-item-content-vo';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import type { PlanItemAddVo } from './plan-item-add-vo';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
22
25
 
23
26
  /**
24
27
  * 计划工单新建请求参数
@@ -86,6 +89,12 @@ export interface PlanAddVo {
86
89
  * @memberof PlanAddVo
87
90
  */
88
91
  'renovationId'?: number;
92
+ /**
93
+ *
94
+ * @type {WorkOrderTypeSubcategoryEnum}
95
+ * @memberof PlanAddVo
96
+ */
97
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
89
98
  }
90
99
 
91
100
  export const PlanAddVoPlanTypeEnum = {
@@ -19,6 +19,9 @@ import type { PlanInspectionItemsDTO } from './plan-inspection-items-dto';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import type { PlanItemEditVo } from './plan-item-edit-vo';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
22
25
 
23
26
  /**
24
27
  * 返回数据,可以是任意类型的值
@@ -98,6 +101,12 @@ export interface PlanDetailDTO {
98
101
  * @memberof PlanDetailDTO
99
102
  */
100
103
  'assigneeName'?: string;
104
+ /**
105
+ *
106
+ * @type {WorkOrderTypeSubcategoryEnum}
107
+ * @memberof PlanDetailDTO
108
+ */
109
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
101
110
  }
102
111
 
103
112
  export const PlanDetailDTOPlanTypeEnum = {
@@ -19,6 +19,9 @@ import type { InspectionItemContentVo } from './inspection-item-content-vo';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import type { PlanItemEditVo } from './plan-item-edit-vo';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
22
25
 
23
26
  /**
24
27
  * 计划工单编辑请求参数
@@ -74,6 +77,12 @@ export interface PlanEditVo {
74
77
  * @memberof PlanEditVo
75
78
  */
76
79
  'inspectionItemContents': Array<InspectionItemContentVo>;
80
+ /**
81
+ *
82
+ * @type {WorkOrderTypeSubcategoryEnum}
83
+ * @memberof PlanEditVo
84
+ */
85
+ 'workOrderTypeSubcategory': WorkOrderTypeSubcategoryEnum;
77
86
  }
78
87
 
79
88
  export const PlanEditVoPlanTypeEnum = {
@@ -19,6 +19,9 @@ import type { WorkOrderDeptDTO } from './work-order-dept-dto';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import type { WorkOrderPlanRepeatsEnum } from './work-order-plan-repeats-enum';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
22
25
 
23
26
  /**
24
27
  * 计划管理列表参数
@@ -80,6 +83,12 @@ export interface PlanSearchDTO {
80
83
  * @memberof PlanSearchDTO
81
84
  */
82
85
  'deptIds'?: Array<number>;
86
+ /**
87
+ *
88
+ * @type {WorkOrderTypeSubcategoryEnum}
89
+ * @memberof PlanSearchDTO
90
+ */
91
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
83
92
  }
84
93
 
85
94
  export const PlanSearchDTOPlanTypeEnum = {
@@ -31,6 +31,9 @@ import type { WorkOrderStatusEnum } from './work-order-status-enum';
31
31
  // May contain unused imports in some cases
32
32
  // @ts-ignore
33
33
  import type { WorkOrderTypeEnum } from './work-order-type-enum';
34
+ // May contain unused imports in some cases
35
+ // @ts-ignore
36
+ import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
34
37
 
35
38
  /**
36
39
  * 工单查询DTO
@@ -152,6 +155,12 @@ export interface WorkOrderSearchDTO {
152
155
  * @memberof WorkOrderSearchDTO
153
156
  */
154
157
  'finishTime'?: string;
158
+ /**
159
+ *
160
+ * @type {WorkOrderTypeSubcategoryEnum}
161
+ * @memberof WorkOrderSearchDTO
162
+ */
163
+ 'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
155
164
  }
156
165
 
157
166
  export const WorkOrderSearchDTOSamplingResultsEnum = {