@gizone/rrs-client 4.2.0-alpha.383 → 4.2.0-alpha.385
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 +2 -0
- package/api.ts +1 -0
- package/apis/equipment-api.ts +91 -0
- package/apis/hwork-api.ts +167 -0
- package/apis/work-order-api.ts +18 -5
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/apis/equipment-api.d.ts +47 -0
- package/dist/apis/equipment-api.js +70 -0
- package/dist/apis/hwork-api.d.ts +96 -0
- package/dist/apis/hwork-api.js +145 -0
- package/dist/apis/work-order-api.d.ts +10 -2
- package/dist/apis/work-order-api.js +10 -5
- package/dist/esm/api.d.ts +1 -0
- package/dist/esm/api.js +1 -0
- package/dist/esm/apis/equipment-api.d.ts +47 -0
- package/dist/esm/apis/equipment-api.js +70 -0
- package/dist/esm/apis/hwork-api.d.ts +96 -0
- package/dist/esm/apis/hwork-api.js +138 -0
- package/dist/esm/apis/work-order-api.d.ts +10 -2
- package/dist/esm/apis/work-order-api.js +10 -5
- package/dist/esm/models/index.d.ts +1 -0
- package/dist/esm/models/index.js +1 -0
- package/dist/esm/models/login-type-enum.d.ts +2 -0
- package/dist/esm/models/login-type-enum.js +3 -1
- package/dist/esm/models/park-info-dto.d.ts +12 -0
- package/dist/esm/models/plan-search-dto.d.ts +6 -0
- package/dist/esm/models/space.d.ts +12 -0
- package/dist/esm/models/sys-post.d.ts +6 -0
- package/dist/esm/models/sys-role.d.ts +6 -0
- package/dist/esm/models/sys-user.d.ts +15 -2
- package/dist/esm/models/user-source-enum.d.ts +21 -0
- package/dist/esm/models/user-source-enum.js +22 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/login-type-enum.d.ts +2 -0
- package/dist/models/login-type-enum.js +3 -1
- package/dist/models/park-info-dto.d.ts +12 -0
- package/dist/models/plan-search-dto.d.ts +6 -0
- package/dist/models/space.d.ts +12 -0
- package/dist/models/sys-post.d.ts +6 -0
- package/dist/models/sys-role.d.ts +6 -0
- package/dist/models/sys-user.d.ts +15 -2
- package/dist/models/user-source-enum.d.ts +21 -0
- package/dist/models/user-source-enum.js +25 -0
- package/models/index.ts +1 -0
- package/models/login-type-enum.ts +3 -1
- package/models/park-info-dto.ts +12 -0
- package/models/plan-search-dto.ts +6 -0
- package/models/space.ts +12 -0
- package/models/sys-post.ts +6 -0
- package/models/sys-role.ts +6 -0
- package/models/sys-user.ts +19 -2
- package/models/user-source-enum.ts +31 -0
- package/package.json +1 -1
package/models/park-info-dto.ts
CHANGED
|
@@ -71,6 +71,18 @@ export interface ParkInfoDTO {
|
|
|
71
71
|
* @memberof ParkInfoDTO
|
|
72
72
|
*/
|
|
73
73
|
'ancestors'?: string;
|
|
74
|
+
/**
|
|
75
|
+
* 集团ID
|
|
76
|
+
* @type {number}
|
|
77
|
+
* @memberof ParkInfoDTO
|
|
78
|
+
*/
|
|
79
|
+
'groupId'?: number;
|
|
80
|
+
/**
|
|
81
|
+
* 大区ID
|
|
82
|
+
* @type {number}
|
|
83
|
+
* @memberof ParkInfoDTO
|
|
84
|
+
*/
|
|
85
|
+
'areaId'?: number;
|
|
74
86
|
/**
|
|
75
87
|
* 园区平面图
|
|
76
88
|
* @type {string}
|
|
@@ -89,6 +89,12 @@ export interface PlanSearchDTO {
|
|
|
89
89
|
* @memberof PlanSearchDTO
|
|
90
90
|
*/
|
|
91
91
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
92
|
+
/**
|
|
93
|
+
* 巡检点ID集合
|
|
94
|
+
* @type {Array<number>}
|
|
95
|
+
* @memberof PlanSearchDTO
|
|
96
|
+
*/
|
|
97
|
+
'itemIds'?: Array<number>;
|
|
92
98
|
}
|
|
93
99
|
|
|
94
100
|
export const PlanSearchDTOPlanTypeEnum = {
|
package/models/space.ts
CHANGED
|
@@ -47,5 +47,17 @@ export interface Space {
|
|
|
47
47
|
* @memberof Space
|
|
48
48
|
*/
|
|
49
49
|
'parentName'?: string;
|
|
50
|
+
/**
|
|
51
|
+
* 父ID
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof Space
|
|
54
|
+
*/
|
|
55
|
+
'parentId'?: number;
|
|
56
|
+
/**
|
|
57
|
+
* 父ID列表
|
|
58
|
+
* @type {Array<number>}
|
|
59
|
+
* @memberof Space
|
|
60
|
+
*/
|
|
61
|
+
'parentIds'?: Array<number>;
|
|
50
62
|
}
|
|
51
63
|
|
package/models/sys-post.ts
CHANGED
package/models/sys-role.ts
CHANGED
package/models/sys-user.ts
CHANGED
|
@@ -22,6 +22,9 @@ import type { SysRole } from './sys-role';
|
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
24
|
import type { SysUserAttachmentInfo } from './sys-user-attachment-info';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
import type { UserSourceEnum } from './user-source-enum';
|
|
25
28
|
|
|
26
29
|
/**
|
|
27
30
|
* 用户对象
|
|
@@ -373,15 +376,29 @@ export interface SysUser {
|
|
|
373
376
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
374
377
|
/**
|
|
375
378
|
*
|
|
376
|
-
* @type {
|
|
379
|
+
* @type {UserSourceEnum}
|
|
377
380
|
* @memberof SysUser
|
|
378
381
|
*/
|
|
379
|
-
'
|
|
382
|
+
'userSource'?: UserSourceEnum;
|
|
383
|
+
/**
|
|
384
|
+
* 源用户ID
|
|
385
|
+
* @type {string}
|
|
386
|
+
* @memberof SysUser
|
|
387
|
+
*/
|
|
388
|
+
'sourceUserId'?: string;
|
|
380
389
|
/**
|
|
381
390
|
*
|
|
382
391
|
* @type {string}
|
|
383
392
|
* @memberof SysUser
|
|
384
393
|
*/
|
|
385
394
|
'cid'?: string;
|
|
395
|
+
/**
|
|
396
|
+
*
|
|
397
|
+
* @type {number}
|
|
398
|
+
* @memberof SysUser
|
|
399
|
+
*/
|
|
400
|
+
'cuserId'?: number;
|
|
386
401
|
}
|
|
387
402
|
|
|
403
|
+
|
|
404
|
+
|
|
@@ -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 UserSourceEnum = {
|
|
24
|
+
Internal: 'INTERNAL',
|
|
25
|
+
Hwork: 'HWORK'
|
|
26
|
+
} as const;
|
|
27
|
+
|
|
28
|
+
export type UserSourceEnum = typeof UserSourceEnum[keyof typeof UserSourceEnum];
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|