@gizone/rrs-client 3.11.13-alpha.67 → 3.11.14-alpha.68
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 +1 -0
- package/README.md +2 -2
- package/apis/inspection-standard-api.ts +77 -10
- package/configuration.ts +1 -1
- package/dist/apis/inspection-standard-api.d.ts +45 -4
- package/dist/apis/inspection-standard-api.js +35 -10
- package/dist/configuration.js +1 -1
- package/dist/esm/apis/inspection-standard-api.d.ts +45 -4
- package/dist/esm/apis/inspection-standard-api.js +35 -10
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/models/get-user-wx200-response.d.ts +4 -4
- package/dist/esm/models/index.d.ts +1 -0
- package/dist/esm/models/index.js +1 -0
- package/dist/esm/models/inspection-category-enum.d.ts +3 -1
- package/dist/esm/models/inspection-category-enum.js +4 -2
- package/dist/esm/models/inspection-standard-add-or-update-vo.d.ts +14 -1
- package/dist/esm/models/inspection-standard-entity.d.ts +20 -0
- package/dist/esm/models/inspection-standard-import-dto.d.ts +26 -0
- package/dist/esm/models/inspection-standard-type-enum.d.ts +21 -0
- package/dist/esm/models/inspection-standard-type-enum.js +22 -0
- package/dist/models/get-user-wx200-response.d.ts +4 -4
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/inspection-category-enum.d.ts +3 -1
- package/dist/models/inspection-category-enum.js +4 -2
- package/dist/models/inspection-standard-add-or-update-vo.d.ts +14 -1
- package/dist/models/inspection-standard-entity.d.ts +20 -0
- package/dist/models/inspection-standard-import-dto.d.ts +26 -0
- package/dist/models/inspection-standard-type-enum.d.ts +21 -0
- package/dist/models/inspection-standard-type-enum.js +25 -0
- package/models/get-user-wx200-response.ts +4 -4
- package/models/index.ts +1 -0
- package/models/inspection-category-enum.ts +4 -2
- package/models/inspection-standard-add-or-update-vo.ts +16 -1
- package/models/inspection-standard-entity.ts +24 -0
- package/models/inspection-standard-import-dto.ts +32 -0
- package/models/inspection-standard-type-enum.ts +31 -0
- package/package.json +1 -1
|
@@ -27,10 +27,12 @@ export const InspectionCategoryEnum = {
|
|
|
27
27
|
FireFightingFacilitiesAndEquipment: 'FIRE_FIGHTING_FACILITIES_AND_EQUIPMENT',
|
|
28
28
|
MainBuildingStructure: 'MAIN_BUILDING_STRUCTURE',
|
|
29
29
|
EquipmentRoomArea: 'EQUIPMENT_ROOM_AREA',
|
|
30
|
-
CentralControlRoomDuty: 'CENTRAL_CONTROL_ROOM_DUTY',
|
|
31
30
|
FireDrill: 'FIRE_DRILL',
|
|
32
31
|
EmergencySupplies: 'EMERGENCY_SUPPLIES',
|
|
33
|
-
|
|
32
|
+
SixSInspection: 'SIX_S_INSPECTION',
|
|
33
|
+
FourPestsElimination: 'FOUR_PESTS_ELIMINATION',
|
|
34
|
+
CentralControlRoomDuty: 'CENTRAL_CONTROL_ROOM_DUTY',
|
|
35
|
+
GreeningMaintenance: 'GREENING_MAINTENANCE'
|
|
34
36
|
} as const;
|
|
35
37
|
|
|
36
38
|
export type InspectionCategoryEnum = typeof InspectionCategoryEnum[keyof typeof InspectionCategoryEnum];
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
import type { InspectionCategoryEnum } from './inspection-category-enum';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
+
import type { InspectionStandardTypeEnum } from './inspection-standard-type-enum';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
21
24
|
import type { WorkOrderPlanHolidaysEnum } from './work-order-plan-holidays-enum';
|
|
22
25
|
// May contain unused imports in some cases
|
|
23
26
|
// @ts-ignore
|
|
@@ -34,7 +37,19 @@ export interface InspectionStandardAddOrUpdateVO {
|
|
|
34
37
|
* @type {InspectionCategoryEnum}
|
|
35
38
|
* @memberof InspectionStandardAddOrUpdateVO
|
|
36
39
|
*/
|
|
37
|
-
'category'
|
|
40
|
+
'category'?: InspectionCategoryEnum;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {InspectionStandardTypeEnum}
|
|
44
|
+
* @memberof InspectionStandardAddOrUpdateVO
|
|
45
|
+
*/
|
|
46
|
+
'type': InspectionStandardTypeEnum;
|
|
47
|
+
/**
|
|
48
|
+
* 设备系统
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof InspectionStandardAddOrUpdateVO
|
|
51
|
+
*/
|
|
52
|
+
'equipmentSystemId'?: number;
|
|
38
53
|
/**
|
|
39
54
|
* 内容
|
|
40
55
|
* @type {string}
|
|
@@ -13,11 +13,17 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { EquipmentSystemEntity } from './equipment-system-entity';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import type { InspectionCategoryEnum } from './inspection-category-enum';
|
|
19
22
|
// May contain unused imports in some cases
|
|
20
23
|
// @ts-ignore
|
|
24
|
+
import type { InspectionStandardTypeEnum } from './inspection-standard-type-enum';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
21
27
|
import type { WorkOrderPlanHolidaysEnum } from './work-order-plan-holidays-enum';
|
|
22
28
|
// May contain unused imports in some cases
|
|
23
29
|
// @ts-ignore
|
|
@@ -35,12 +41,24 @@ export interface InspectionStandardEntity {
|
|
|
35
41
|
* @memberof InspectionStandardEntity
|
|
36
42
|
*/
|
|
37
43
|
'id'?: number;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {InspectionStandardTypeEnum}
|
|
47
|
+
* @memberof InspectionStandardEntity
|
|
48
|
+
*/
|
|
49
|
+
'type'?: InspectionStandardTypeEnum;
|
|
38
50
|
/**
|
|
39
51
|
*
|
|
40
52
|
* @type {InspectionCategoryEnum}
|
|
41
53
|
* @memberof InspectionStandardEntity
|
|
42
54
|
*/
|
|
43
55
|
'category'?: InspectionCategoryEnum;
|
|
56
|
+
/**
|
|
57
|
+
* 设备系统ID
|
|
58
|
+
* @type {number}
|
|
59
|
+
* @memberof InspectionStandardEntity
|
|
60
|
+
*/
|
|
61
|
+
'equipmentSystemId'?: number;
|
|
44
62
|
/**
|
|
45
63
|
* 内容
|
|
46
64
|
* @type {string}
|
|
@@ -137,6 +155,12 @@ export interface InspectionStandardEntity {
|
|
|
137
155
|
* @memberof InspectionStandardEntity
|
|
138
156
|
*/
|
|
139
157
|
'executionTime'?: number;
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {EquipmentSystemEntity}
|
|
161
|
+
* @memberof InspectionStandardEntity
|
|
162
|
+
*/
|
|
163
|
+
'equipmentSystem'?: EquipmentSystemEntity;
|
|
140
164
|
}
|
|
141
165
|
|
|
142
166
|
|
|
@@ -13,6 +13,12 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { InspectionCategoryEnum } from './inspection-category-enum';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { InspectionStandardTypeEnum } from './inspection-standard-type-enum';
|
|
16
22
|
|
|
17
23
|
/**
|
|
18
24
|
* 巡检标准导入
|
|
@@ -20,12 +26,24 @@
|
|
|
20
26
|
* @interface InspectionStandardImportDTO
|
|
21
27
|
*/
|
|
22
28
|
export interface InspectionStandardImportDTO {
|
|
29
|
+
/**
|
|
30
|
+
* 巡检标准类型
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof InspectionStandardImportDTO
|
|
33
|
+
*/
|
|
34
|
+
'type'?: string;
|
|
23
35
|
/**
|
|
24
36
|
* 巡检分类
|
|
25
37
|
* @type {string}
|
|
26
38
|
* @memberof InspectionStandardImportDTO
|
|
27
39
|
*/
|
|
28
40
|
'category'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 设备系统
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof InspectionStandardImportDTO
|
|
45
|
+
*/
|
|
46
|
+
'equipmentSystemName'?: string;
|
|
29
47
|
/**
|
|
30
48
|
* 内容项
|
|
31
49
|
* @type {string}
|
|
@@ -116,5 +134,19 @@ export interface InspectionStandardImportDTO {
|
|
|
116
134
|
* @memberof InspectionStandardImportDTO
|
|
117
135
|
*/
|
|
118
136
|
'equipmentSystemId'?: number;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @type {InspectionStandardTypeEnum}
|
|
140
|
+
* @memberof InspectionStandardImportDTO
|
|
141
|
+
*/
|
|
142
|
+
'typeEnum'?: InspectionStandardTypeEnum;
|
|
143
|
+
/**
|
|
144
|
+
*
|
|
145
|
+
* @type {InspectionCategoryEnum}
|
|
146
|
+
* @memberof InspectionStandardImportDTO
|
|
147
|
+
*/
|
|
148
|
+
'categoryEnum'?: InspectionCategoryEnum;
|
|
119
149
|
}
|
|
120
150
|
|
|
151
|
+
|
|
152
|
+
|
|
@@ -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
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 巡检标准类型
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
export const InspectionStandardTypeEnum = {
|
|
24
|
+
Equipment: 'EQUIPMENT',
|
|
25
|
+
Space: 'SPACE'
|
|
26
|
+
} as const;
|
|
27
|
+
|
|
28
|
+
export type InspectionStandardTypeEnum = typeof InspectionStandardTypeEnum[keyof typeof InspectionStandardTypeEnum];
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|