@gizone/rrs-client 4.1.3-alpha.189 → 4.1.3-alpha.190
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 +4 -0
- package/apis/common-api.ts +210 -0
- package/dist/apis/common-api.d.ts +111 -0
- package/dist/apis/common-api.js +150 -0
- package/dist/esm/apis/common-api.d.ts +111 -0
- package/dist/esm/apis/common-api.js +150 -0
- package/dist/esm/models/center-list-dto.d.ts +37 -0
- package/dist/esm/models/center-list-dto.js +14 -0
- package/dist/esm/models/dept-relation-dto.d.ts +18 -0
- package/dist/esm/models/dept-relation.d.ts +18 -0
- package/dist/esm/models/get-user-wx200-response.d.ts +10 -10
- package/dist/esm/models/index.d.ts +4 -0
- package/dist/esm/models/index.js +4 -0
- package/dist/esm/models/ipage-access-vo.d.ts +5 -5
- package/dist/esm/models/json-result-list-center-list-dto.d.ts +62 -0
- package/dist/esm/models/json-result-list-center-list-dto.js +14 -0
- package/dist/esm/models/json-result-list-park-list-dto.d.ts +62 -0
- package/dist/esm/models/json-result-list-park-list-dto.js +14 -0
- package/dist/esm/models/park-list-dto.d.ts +54 -0
- package/dist/esm/models/park-list-dto.js +14 -0
- package/dist/models/center-list-dto.d.ts +37 -0
- package/dist/models/center-list-dto.js +15 -0
- package/dist/models/dept-relation-dto.d.ts +18 -0
- package/dist/models/dept-relation.d.ts +18 -0
- package/dist/models/get-user-wx200-response.d.ts +10 -10
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/dist/models/ipage-access-vo.d.ts +5 -5
- package/dist/models/json-result-list-center-list-dto.d.ts +62 -0
- package/dist/models/json-result-list-center-list-dto.js +15 -0
- package/dist/models/json-result-list-park-list-dto.d.ts +62 -0
- package/dist/models/json-result-list-park-list-dto.js +15 -0
- package/dist/models/park-list-dto.d.ts +54 -0
- package/dist/models/park-list-dto.js +15 -0
- package/models/center-list-dto.ts +47 -0
- package/models/dept-relation-dto.ts +18 -0
- package/models/dept-relation.ts +18 -0
- package/models/get-user-wx200-response.ts +10 -10
- package/models/index.ts +4 -0
- package/models/ipage-access-vo.ts +5 -5
- package/models/json-result-list-center-list-dto.ts +72 -0
- package/models/json-result-list-park-list-dto.ts +72 -0
- package/models/park-list-dto.ts +60 -0
- package/package.json +1 -1
|
@@ -146,6 +146,24 @@ export interface DeptRelationDTO {
|
|
|
146
146
|
* @memberof DeptRelationDTO
|
|
147
147
|
*/
|
|
148
148
|
'parkRentalArea'?: string;
|
|
149
|
+
/**
|
|
150
|
+
* 中心编码
|
|
151
|
+
* @type {string}
|
|
152
|
+
* @memberof DeptRelationDTO
|
|
153
|
+
*/
|
|
154
|
+
'centerCode'?: string;
|
|
155
|
+
/**
|
|
156
|
+
* 所属园区
|
|
157
|
+
* @type {string}
|
|
158
|
+
* @memberof DeptRelationDTO
|
|
159
|
+
*/
|
|
160
|
+
'srmPark'?: string;
|
|
161
|
+
/**
|
|
162
|
+
* 园区编码
|
|
163
|
+
* @type {string}
|
|
164
|
+
* @memberof DeptRelationDTO
|
|
165
|
+
*/
|
|
166
|
+
'srmParkCode'?: string;
|
|
149
167
|
}
|
|
150
168
|
|
|
151
169
|
|
package/models/dept-relation.ts
CHANGED
|
@@ -92,6 +92,24 @@ export interface DeptRelation {
|
|
|
92
92
|
* @memberof DeptRelation
|
|
93
93
|
*/
|
|
94
94
|
'emptyWarehouseArea': number;
|
|
95
|
+
/**
|
|
96
|
+
* 中心编码
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof DeptRelation
|
|
99
|
+
*/
|
|
100
|
+
'centerCode': string;
|
|
101
|
+
/**
|
|
102
|
+
* 所属园区
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof DeptRelation
|
|
105
|
+
*/
|
|
106
|
+
'srmPark': string;
|
|
107
|
+
/**
|
|
108
|
+
* 园区编码
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof DeptRelation
|
|
111
|
+
*/
|
|
112
|
+
'srmParkCode': string;
|
|
95
113
|
}
|
|
96
114
|
|
|
97
115
|
|
|
@@ -28,10 +28,10 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
28
28
|
export interface GetUserWx200Response {
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
|
-
* @type {
|
|
31
|
+
* @type {Array<string>}
|
|
32
32
|
* @memberof GetUserWx200Response
|
|
33
33
|
*/
|
|
34
|
-
'
|
|
34
|
+
'headerNames'?: Array<string>;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
37
|
* @type {number}
|
|
@@ -40,10 +40,10 @@ export interface GetUserWx200Response {
|
|
|
40
40
|
'status'?: number;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
|
-
* @type {
|
|
43
|
+
* @type {object}
|
|
44
44
|
* @memberof GetUserWx200Response
|
|
45
45
|
*/
|
|
46
|
-
'
|
|
46
|
+
'trailerFields'?: object;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
49
|
* @type {GetUserWx200ResponseLocale}
|
|
@@ -74,12 +74,6 @@ export interface GetUserWx200Response {
|
|
|
74
74
|
* @memberof GetUserWx200Response
|
|
75
75
|
*/
|
|
76
76
|
'bufferSize'?: number;
|
|
77
|
-
/**
|
|
78
|
-
*
|
|
79
|
-
* @type {string}
|
|
80
|
-
* @memberof GetUserWx200Response
|
|
81
|
-
*/
|
|
82
|
-
'characterEncoding'?: string;
|
|
83
77
|
/**
|
|
84
78
|
*
|
|
85
79
|
* @type {number}
|
|
@@ -92,6 +86,12 @@ export interface GetUserWx200Response {
|
|
|
92
86
|
* @memberof GetUserWx200Response
|
|
93
87
|
*/
|
|
94
88
|
'committed'?: boolean;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof GetUserWx200Response
|
|
93
|
+
*/
|
|
94
|
+
'characterEncoding'?: string;
|
|
95
95
|
/**
|
|
96
96
|
*
|
|
97
97
|
* @type {object}
|
package/models/index.ts
CHANGED
|
@@ -71,6 +71,7 @@ export * from './call-police-history-dto';
|
|
|
71
71
|
export * from './call-police-history-handle';
|
|
72
72
|
export * from './call-police-type-dto';
|
|
73
73
|
export * from './call-police-type-enum';
|
|
74
|
+
export * from './center-list-dto';
|
|
74
75
|
export * from './change-password-dto';
|
|
75
76
|
export * from './choice-energy-meter-bo';
|
|
76
77
|
export * from './choice-water-meter-vo';
|
|
@@ -394,6 +395,7 @@ export * from './json-result-list-appointment-registration-unloading-area-list-d
|
|
|
394
395
|
export * from './json-result-list-area-park-dto';
|
|
395
396
|
export * from './json-result-list-calendar-entity';
|
|
396
397
|
export * from './json-result-list-call-police-type-dto';
|
|
398
|
+
export * from './json-result-list-center-list-dto';
|
|
397
399
|
export * from './json-result-list-cold-store-dashboard-access-series-dto';
|
|
398
400
|
export * from './json-result-list-cold-store-dashboard-alarm-list-dto';
|
|
399
401
|
export * from './json-result-list-cold-store-dashboard-device-dto';
|
|
@@ -439,6 +441,7 @@ export * from './json-result-list-owner-kanban-work-order-type-statistics-dto';
|
|
|
439
441
|
export * from './json-result-list-owner-two-park-operation-work-order-histogram-statistics-dto';
|
|
440
442
|
export * from './json-result-list-owner-two-park-operation-work-order-response-shi-statistics-dto';
|
|
441
443
|
export * from './json-result-list-park-drop-down-box-dto';
|
|
444
|
+
export * from './json-result-list-park-list-dto';
|
|
442
445
|
export * from './json-result-list-plan-calendar-list-vo';
|
|
443
446
|
export * from './json-result-list-plan-calendar-vo';
|
|
444
447
|
export * from './json-result-list-renovation-activity-list-vo';
|
|
@@ -677,6 +680,7 @@ export * from './park-center-attribute-enum';
|
|
|
677
680
|
export * from './park-drop-down-box-dto';
|
|
678
681
|
export * from './park-info-dto';
|
|
679
682
|
export * from './park-info-edit-vo';
|
|
683
|
+
export * from './park-list-dto';
|
|
680
684
|
export * from './park-plat-form-enum';
|
|
681
685
|
export * from './park-push-settings-add-bo';
|
|
682
686
|
export * from './park-settings-details-dto';
|
|
@@ -49,17 +49,17 @@ export interface IPageAccessVO {
|
|
|
49
49
|
'searchCount'?: boolean;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {number}
|
|
53
53
|
* @memberof IPageAccessVO
|
|
54
|
-
* @deprecated
|
|
55
54
|
*/
|
|
56
|
-
'
|
|
55
|
+
'pages'?: number;
|
|
57
56
|
/**
|
|
58
57
|
*
|
|
59
|
-
* @type {
|
|
58
|
+
* @type {boolean}
|
|
60
59
|
* @memberof IPageAccessVO
|
|
60
|
+
* @deprecated
|
|
61
61
|
*/
|
|
62
|
-
'
|
|
62
|
+
'hitCount'?: boolean;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|
|
@@ -0,0 +1,72 @@
|
|
|
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
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { CenterListDTO } from './center-list-dto';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultListCenterListDTO
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultListCenterListDTO {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultListCenterListDTO
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultListCenterListDTO
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultListCenterListDTO
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* 返回数据,可以是任意类型的值
|
|
49
|
+
* @type {Array<CenterListDTO>}
|
|
50
|
+
* @memberof JsonResultListCenterListDTO
|
|
51
|
+
*/
|
|
52
|
+
'data'?: Array<CenterListDTO> | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultListCenterListDTO
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultListCenterListDTO
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultListCenterListDTO
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
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
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { ParkListDTO } from './park-list-dto';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultListParkListDTO
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultListParkListDTO {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultListParkListDTO
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultListParkListDTO
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultListParkListDTO
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* 返回数据,可以是任意类型的值
|
|
49
|
+
* @type {Array<ParkListDTO>}
|
|
50
|
+
* @memberof JsonResultListParkListDTO
|
|
51
|
+
*/
|
|
52
|
+
'data'?: Array<ParkListDTO> | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultListParkListDTO
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultListParkListDTO
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultListParkListDTO
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
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
|
+
* @interface ParkListDTO
|
|
21
|
+
*/
|
|
22
|
+
export interface ParkListDTO {
|
|
23
|
+
/**
|
|
24
|
+
* 园区ID
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof ParkListDTO
|
|
27
|
+
*/
|
|
28
|
+
'parkId'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* 中心名称
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ParkListDTO
|
|
33
|
+
*/
|
|
34
|
+
'center'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* 中心编码
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ParkListDTO
|
|
39
|
+
*/
|
|
40
|
+
'centerCode'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 园区名称
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ParkListDTO
|
|
45
|
+
*/
|
|
46
|
+
'parkName'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* srm园区名称
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ParkListDTO
|
|
51
|
+
*/
|
|
52
|
+
'srmPark'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* srm园区编码
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ParkListDTO
|
|
57
|
+
*/
|
|
58
|
+
'srmParkCode'?: string;
|
|
59
|
+
}
|
|
60
|
+
|