@gizone/rrs-client 4.2.0-alpha.254 → 4.2.0-alpha.255
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/apis/disaster-warning-standard-api.ts +18 -5
- package/apis/work-order-api.ts +3 -2
- package/dist/apis/disaster-warning-standard-api.d.ts +10 -2
- package/dist/apis/disaster-warning-standard-api.js +10 -5
- package/dist/apis/work-order-api.d.ts +2 -1
- package/dist/apis/work-order-api.js +2 -1
- package/dist/esm/apis/disaster-warning-standard-api.d.ts +10 -2
- package/dist/esm/apis/disaster-warning-standard-api.js +10 -5
- package/dist/esm/apis/work-order-api.d.ts +2 -1
- package/dist/esm/apis/work-order-api.js +2 -1
- package/dist/esm/models/get-user-wx200-response.d.ts +10 -10
- package/dist/esm/models/index.d.ts +1 -0
- package/dist/esm/models/index.js +1 -0
- package/dist/esm/models/ipage-access-vo.d.ts +3 -3
- package/dist/esm/models/period-detail-resp.d.ts +1 -0
- package/dist/esm/models/period-detail-resp.js +2 -1
- package/dist/esm/models/plan-add-vo.d.ts +9 -1
- package/dist/esm/models/plan-add-vo.js +2 -1
- package/dist/esm/models/plan-calendar-list-vo.d.ts +1 -0
- package/dist/esm/models/plan-calendar-list-vo.js +2 -1
- package/dist/esm/models/plan-detail-dto.d.ts +1 -0
- package/dist/esm/models/plan-detail-dto.js +2 -1
- package/dist/esm/models/plan-edit-vo.d.ts +9 -1
- package/dist/esm/models/plan-edit-vo.js +2 -1
- package/dist/esm/models/plan-level-enum.d.ts +22 -0
- package/dist/esm/models/plan-level-enum.js +23 -0
- package/dist/esm/models/plan-search-dto.d.ts +1 -0
- package/dist/esm/models/plan-search-dto.js +2 -1
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/esm/models/work-order-type-subcategory-enum.d.ts +31 -0
- package/dist/esm/models/work-order-type-subcategory-enum.js +32 -1
- package/dist/models/get-user-wx200-response.d.ts +10 -10
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/ipage-access-vo.d.ts +3 -3
- package/dist/models/period-detail-resp.d.ts +1 -0
- package/dist/models/period-detail-resp.js +2 -1
- package/dist/models/plan-add-vo.d.ts +9 -1
- package/dist/models/plan-add-vo.js +2 -1
- package/dist/models/plan-calendar-list-vo.d.ts +1 -0
- package/dist/models/plan-calendar-list-vo.js +2 -1
- package/dist/models/plan-detail-dto.d.ts +1 -0
- package/dist/models/plan-detail-dto.js +2 -1
- package/dist/models/plan-edit-vo.d.ts +9 -1
- package/dist/models/plan-edit-vo.js +2 -1
- package/dist/models/plan-level-enum.d.ts +22 -0
- package/dist/models/plan-level-enum.js +26 -0
- package/dist/models/plan-search-dto.d.ts +1 -0
- package/dist/models/plan-search-dto.js +2 -1
- package/dist/models/sys-user.d.ts +4 -4
- package/dist/models/work-order-type-subcategory-enum.d.ts +31 -0
- package/dist/models/work-order-type-subcategory-enum.js +32 -1
- package/models/get-user-wx200-response.ts +10 -10
- package/models/index.ts +1 -0
- package/models/ipage-access-vo.ts +3 -3
- package/models/period-detail-resp.ts +2 -1
- package/models/plan-add-vo.ts +12 -2
- package/models/plan-calendar-list-vo.ts +2 -1
- package/models/plan-detail-dto.ts +2 -1
- package/models/plan-edit-vo.ts +12 -2
- package/models/plan-level-enum.ts +32 -0
- package/models/plan-search-dto.ts +2 -1
- package/models/sys-user.ts +4 -4
- package/models/work-order-type-subcategory-enum.ts +32 -1
- package/package.json +1 -1
package/models/plan-add-vo.ts
CHANGED
|
@@ -21,6 +21,9 @@ import type { InspectionItemContentVo } from './inspection-item-content-vo';
|
|
|
21
21
|
import type { PlanItemAddVo } from './plan-item-add-vo';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import type { PlanLevelEnum } from './plan-level-enum';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
|
|
25
28
|
|
|
26
29
|
/**
|
|
@@ -76,7 +79,7 @@ export interface PlanAddVo {
|
|
|
76
79
|
* @type {PlanItemAddVo}
|
|
77
80
|
* @memberof PlanAddVo
|
|
78
81
|
*/
|
|
79
|
-
'planItem'
|
|
82
|
+
'planItem'?: PlanItemAddVo;
|
|
80
83
|
/**
|
|
81
84
|
* 巡检项巡检内容
|
|
82
85
|
* @type {Array<InspectionItemContentVo>}
|
|
@@ -95,13 +98,20 @@ export interface PlanAddVo {
|
|
|
95
98
|
* @memberof PlanAddVo
|
|
96
99
|
*/
|
|
97
100
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {PlanLevelEnum}
|
|
104
|
+
* @memberof PlanAddVo
|
|
105
|
+
*/
|
|
106
|
+
'planLevel'?: PlanLevelEnum;
|
|
98
107
|
}
|
|
99
108
|
|
|
100
109
|
export const PlanAddVoPlanTypeEnum = {
|
|
101
110
|
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
102
111
|
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
103
112
|
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
104
|
-
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT'
|
|
113
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
114
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
105
115
|
} as const;
|
|
106
116
|
|
|
107
117
|
export type PlanAddVoPlanTypeEnum = typeof PlanAddVoPlanTypeEnum[keyof typeof PlanAddVoPlanTypeEnum];
|
|
@@ -50,7 +50,8 @@ export const PlanCalendarListVoTypeEnum = {
|
|
|
50
50
|
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
51
51
|
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
52
52
|
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
53
|
-
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT'
|
|
53
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
54
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
54
55
|
} as const;
|
|
55
56
|
|
|
56
57
|
export type PlanCalendarListVoTypeEnum = typeof PlanCalendarListVoTypeEnum[keyof typeof PlanCalendarListVoTypeEnum];
|
|
@@ -113,7 +113,8 @@ export const PlanDetailDTOPlanTypeEnum = {
|
|
|
113
113
|
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
114
114
|
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
115
115
|
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
116
|
-
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT'
|
|
116
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
117
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
117
118
|
} as const;
|
|
118
119
|
|
|
119
120
|
export type PlanDetailDTOPlanTypeEnum = typeof PlanDetailDTOPlanTypeEnum[keyof typeof PlanDetailDTOPlanTypeEnum];
|
package/models/plan-edit-vo.ts
CHANGED
|
@@ -21,6 +21,9 @@ import type { InspectionItemContentVo } from './inspection-item-content-vo';
|
|
|
21
21
|
import type { PlanItemEditVo } from './plan-item-edit-vo';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import type { PlanLevelEnum } from './plan-level-enum';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
|
|
25
28
|
|
|
26
29
|
/**
|
|
@@ -70,7 +73,7 @@ export interface PlanEditVo {
|
|
|
70
73
|
* @type {PlanItemEditVo}
|
|
71
74
|
* @memberof PlanEditVo
|
|
72
75
|
*/
|
|
73
|
-
'planItem'
|
|
76
|
+
'planItem'?: PlanItemEditVo;
|
|
74
77
|
/**
|
|
75
78
|
* 巡检项巡检内容
|
|
76
79
|
* @type {Array<InspectionItemContentVo>}
|
|
@@ -83,13 +86,20 @@ export interface PlanEditVo {
|
|
|
83
86
|
* @memberof PlanEditVo
|
|
84
87
|
*/
|
|
85
88
|
'workOrderTypeSubcategory': WorkOrderTypeSubcategoryEnum;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {PlanLevelEnum}
|
|
92
|
+
* @memberof PlanEditVo
|
|
93
|
+
*/
|
|
94
|
+
'planLevel'?: PlanLevelEnum;
|
|
86
95
|
}
|
|
87
96
|
|
|
88
97
|
export const PlanEditVoPlanTypeEnum = {
|
|
89
98
|
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
90
99
|
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
91
100
|
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
92
|
-
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT'
|
|
101
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
102
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
93
103
|
} as const;
|
|
94
104
|
|
|
95
105
|
export type PlanEditVoPlanTypeEnum = typeof PlanEditVoPlanTypeEnum[keyof typeof PlanEditVoPlanTypeEnum];
|
|
@@ -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 PlanLevelEnum = {
|
|
24
|
+
Red: 'RED',
|
|
25
|
+
Orange: 'ORANGE',
|
|
26
|
+
Yellow: 'YELLOW'
|
|
27
|
+
} as const;
|
|
28
|
+
|
|
29
|
+
export type PlanLevelEnum = typeof PlanLevelEnum[keyof typeof PlanLevelEnum];
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
@@ -95,7 +95,8 @@ export const PlanSearchDTOPlanTypeEnum = {
|
|
|
95
95
|
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
96
96
|
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
97
97
|
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
98
|
-
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT'
|
|
98
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
99
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
99
100
|
} as const;
|
|
100
101
|
|
|
101
102
|
export type PlanSearchDTOPlanTypeEnum = typeof PlanSearchDTOPlanTypeEnum[keyof typeof PlanSearchDTOPlanTypeEnum];
|
package/models/sys-user.ts
CHANGED
|
@@ -379,15 +379,15 @@ export interface SysUser {
|
|
|
379
379
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
380
380
|
/**
|
|
381
381
|
*
|
|
382
|
-
* @type {
|
|
382
|
+
* @type {string}
|
|
383
383
|
* @memberof SysUser
|
|
384
384
|
*/
|
|
385
|
-
'
|
|
385
|
+
'cid'?: string;
|
|
386
386
|
/**
|
|
387
387
|
*
|
|
388
|
-
* @type {
|
|
388
|
+
* @type {number}
|
|
389
389
|
* @memberof SysUser
|
|
390
390
|
*/
|
|
391
|
-
'
|
|
391
|
+
'cuserId'?: number;
|
|
392
392
|
}
|
|
393
393
|
|
|
@@ -32,7 +32,38 @@ export const WorkOrderTypeSubcategoryEnum = {
|
|
|
32
32
|
CentralControlShiftHandover: 'CENTRAL_CONTROL_SHIFT_HANDOVER',
|
|
33
33
|
BuildingEquipmentMaintenance: 'BUILDING_EQUIPMENT_MAINTENANCE',
|
|
34
34
|
SmartWarehouseEquipmentMaintenance: 'SMART_WAREHOUSE_EQUIPMENT_MAINTENANCE',
|
|
35
|
-
ColdStorageEquipmentMaintenance: 'COLD_STORAGE_EQUIPMENT_MAINTENANCE'
|
|
35
|
+
ColdStorageEquipmentMaintenance: 'COLD_STORAGE_EQUIPMENT_MAINTENANCE',
|
|
36
|
+
BaoXue: 'BAO_XUE',
|
|
37
|
+
BaoYu: 'BAO_YU',
|
|
38
|
+
BingBao: 'BING_BAO',
|
|
39
|
+
ChiXuDiWen: 'CHI_XU_DI_WEN',
|
|
40
|
+
ChiXuGaoWen: 'CHI_XU_GAO_WEN',
|
|
41
|
+
DaFeng: 'DA_FENG',
|
|
42
|
+
DaWu: 'DA_WU',
|
|
43
|
+
DaXue: 'DA_XUE',
|
|
44
|
+
DaoLuBingXue: 'DAO_LU_BING_XUE',
|
|
45
|
+
DaoLuJieBing: 'DAO_LU_JIE_BING',
|
|
46
|
+
DiWen: 'DI_WEN',
|
|
47
|
+
GanHan: 'GAN_HAN',
|
|
48
|
+
HanChao: 'HAN_CHAO',
|
|
49
|
+
HanLeng: 'HAN_LENG',
|
|
50
|
+
HuiMai: 'HUI_MAI',
|
|
51
|
+
HuoXian: 'HUO_XIAN',
|
|
52
|
+
JiangWen: 'JIANG_WEN',
|
|
53
|
+
LeiBao: 'LEI_BAO',
|
|
54
|
+
LeiBaoDaFeng: 'LEI_BAO_DA_FENG',
|
|
55
|
+
LeiDian: 'LEI_DIAN',
|
|
56
|
+
LeiYuDaFeng: 'LEI_YU_DA_FENG',
|
|
57
|
+
Mai: 'MAI',
|
|
58
|
+
QiangDuiLiu: 'QIANG_DUI_LIU',
|
|
59
|
+
QiangJiangYu: 'QIANG_JIANG_YU',
|
|
60
|
+
SenLinHuoXian: 'SEN_LIN_HUO_XIAN',
|
|
61
|
+
ShaChen: 'SHA_CHEN',
|
|
62
|
+
ShaChenBao: 'SHA_CHEN_BAO',
|
|
63
|
+
ShuangDong: 'SHUANG_DONG',
|
|
64
|
+
TaiFeng: 'TAI_FENG',
|
|
65
|
+
XueZai: 'XUE_ZAI',
|
|
66
|
+
ZhongWuRan: 'ZHONG_WU_RAN'
|
|
36
67
|
} as const;
|
|
37
68
|
|
|
38
69
|
export type WorkOrderTypeSubcategoryEnum = typeof WorkOrderTypeSubcategoryEnum[keyof typeof WorkOrderTypeSubcategoryEnum];
|