@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
|
@@ -0,0 +1,62 @@
|
|
|
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
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
13
|
+
import type { ParkListDTO } from './park-list-dto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultListParkListDTO
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultListParkListDTO {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultListParkListDTO
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultListParkListDTO
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultListParkListDTO
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 返回数据,可以是任意类型的值
|
|
40
|
+
* @type {Array<ParkListDTO>}
|
|
41
|
+
* @memberof JsonResultListParkListDTO
|
|
42
|
+
*/
|
|
43
|
+
'data'?: Array<ParkListDTO> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultListParkListDTO
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultListParkListDTO
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultListParkListDTO
|
|
60
|
+
*/
|
|
61
|
+
'requestId'?: string | null;
|
|
62
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
export {};
|
|
@@ -0,0 +1,54 @@
|
|
|
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
|
+
* @interface ParkListDTO
|
|
16
|
+
*/
|
|
17
|
+
export interface ParkListDTO {
|
|
18
|
+
/**
|
|
19
|
+
* 园区ID
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof ParkListDTO
|
|
22
|
+
*/
|
|
23
|
+
'parkId'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* 中心名称
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ParkListDTO
|
|
28
|
+
*/
|
|
29
|
+
'center'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* 中心编码
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ParkListDTO
|
|
34
|
+
*/
|
|
35
|
+
'centerCode'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* 园区名称
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ParkListDTO
|
|
40
|
+
*/
|
|
41
|
+
'parkName'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* srm园区名称
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ParkListDTO
|
|
46
|
+
*/
|
|
47
|
+
'srmPark'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* srm园区编码
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof ParkListDTO
|
|
52
|
+
*/
|
|
53
|
+
'srmParkCode'?: string;
|
|
54
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
export {};
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
import type { ParkPlatFormEnum } from './park-plat-form-enum';
|
|
13
|
+
/**
|
|
14
|
+
* 中心详情
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CenterListDTO
|
|
17
|
+
*/
|
|
18
|
+
export interface CenterListDTO {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {ParkPlatFormEnum}
|
|
22
|
+
* @memberof CenterListDTO
|
|
23
|
+
*/
|
|
24
|
+
'platForm'?: ParkPlatFormEnum;
|
|
25
|
+
/**
|
|
26
|
+
* 所属中心
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof CenterListDTO
|
|
29
|
+
*/
|
|
30
|
+
'center'?: string;
|
|
31
|
+
/**
|
|
32
|
+
* 中心名称
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof CenterListDTO
|
|
35
|
+
*/
|
|
36
|
+
'centerCode'?: string;
|
|
37
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -137,4 +137,22 @@ export interface DeptRelationDTO {
|
|
|
137
137
|
* @memberof DeptRelationDTO
|
|
138
138
|
*/
|
|
139
139
|
'parkRentalArea'?: string;
|
|
140
|
+
/**
|
|
141
|
+
* 中心编码
|
|
142
|
+
* @type {string}
|
|
143
|
+
* @memberof DeptRelationDTO
|
|
144
|
+
*/
|
|
145
|
+
'centerCode'?: string;
|
|
146
|
+
/**
|
|
147
|
+
* 所属园区
|
|
148
|
+
* @type {string}
|
|
149
|
+
* @memberof DeptRelationDTO
|
|
150
|
+
*/
|
|
151
|
+
'srmPark'?: string;
|
|
152
|
+
/**
|
|
153
|
+
* 园区编码
|
|
154
|
+
* @type {string}
|
|
155
|
+
* @memberof DeptRelationDTO
|
|
156
|
+
*/
|
|
157
|
+
'srmParkCode'?: string;
|
|
140
158
|
}
|
|
@@ -83,4 +83,22 @@ export interface DeptRelation {
|
|
|
83
83
|
* @memberof DeptRelation
|
|
84
84
|
*/
|
|
85
85
|
'emptyWarehouseArea': number;
|
|
86
|
+
/**
|
|
87
|
+
* 中心编码
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof DeptRelation
|
|
90
|
+
*/
|
|
91
|
+
'centerCode': string;
|
|
92
|
+
/**
|
|
93
|
+
* 所属园区
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof DeptRelation
|
|
96
|
+
*/
|
|
97
|
+
'srmPark': string;
|
|
98
|
+
/**
|
|
99
|
+
* 园区编码
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof DeptRelation
|
|
102
|
+
*/
|
|
103
|
+
'srmParkCode': string;
|
|
86
104
|
}
|
|
@@ -19,10 +19,10 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
|
-
* @type {
|
|
22
|
+
* @type {Array<string>}
|
|
23
23
|
* @memberof GetUserWx200Response
|
|
24
24
|
*/
|
|
25
|
-
'
|
|
25
|
+
'headerNames'?: Array<string>;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
28
|
* @type {number}
|
|
@@ -31,10 +31,10 @@ export interface GetUserWx200Response {
|
|
|
31
31
|
'status'?: number;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @type {
|
|
34
|
+
* @type {object}
|
|
35
35
|
* @memberof GetUserWx200Response
|
|
36
36
|
*/
|
|
37
|
-
'
|
|
37
|
+
'trailerFields'?: object;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {GetUserWx200ResponseLocale}
|
|
@@ -65,12 +65,6 @@ export interface GetUserWx200Response {
|
|
|
65
65
|
* @memberof GetUserWx200Response
|
|
66
66
|
*/
|
|
67
67
|
'bufferSize'?: number;
|
|
68
|
-
/**
|
|
69
|
-
*
|
|
70
|
-
* @type {string}
|
|
71
|
-
* @memberof GetUserWx200Response
|
|
72
|
-
*/
|
|
73
|
-
'characterEncoding'?: string;
|
|
74
68
|
/**
|
|
75
69
|
*
|
|
76
70
|
* @type {number}
|
|
@@ -83,6 +77,12 @@ export interface GetUserWx200Response {
|
|
|
83
77
|
* @memberof GetUserWx200Response
|
|
84
78
|
*/
|
|
85
79
|
'committed'?: boolean;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof GetUserWx200Response
|
|
84
|
+
*/
|
|
85
|
+
'characterEncoding'?: string;
|
|
86
86
|
/**
|
|
87
87
|
*
|
|
88
88
|
* @type {object}
|
package/dist/models/index.d.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';
|
package/dist/models/index.js
CHANGED
|
@@ -87,6 +87,7 @@ __exportStar(require("./call-police-history-dto"), exports);
|
|
|
87
87
|
__exportStar(require("./call-police-history-handle"), exports);
|
|
88
88
|
__exportStar(require("./call-police-type-dto"), exports);
|
|
89
89
|
__exportStar(require("./call-police-type-enum"), exports);
|
|
90
|
+
__exportStar(require("./center-list-dto"), exports);
|
|
90
91
|
__exportStar(require("./change-password-dto"), exports);
|
|
91
92
|
__exportStar(require("./choice-energy-meter-bo"), exports);
|
|
92
93
|
__exportStar(require("./choice-water-meter-vo"), exports);
|
|
@@ -410,6 +411,7 @@ __exportStar(require("./json-result-list-appointment-registration-unloading-area
|
|
|
410
411
|
__exportStar(require("./json-result-list-area-park-dto"), exports);
|
|
411
412
|
__exportStar(require("./json-result-list-calendar-entity"), exports);
|
|
412
413
|
__exportStar(require("./json-result-list-call-police-type-dto"), exports);
|
|
414
|
+
__exportStar(require("./json-result-list-center-list-dto"), exports);
|
|
413
415
|
__exportStar(require("./json-result-list-cold-store-dashboard-access-series-dto"), exports);
|
|
414
416
|
__exportStar(require("./json-result-list-cold-store-dashboard-alarm-list-dto"), exports);
|
|
415
417
|
__exportStar(require("./json-result-list-cold-store-dashboard-device-dto"), exports);
|
|
@@ -455,6 +457,7 @@ __exportStar(require("./json-result-list-owner-kanban-work-order-type-statistics
|
|
|
455
457
|
__exportStar(require("./json-result-list-owner-two-park-operation-work-order-histogram-statistics-dto"), exports);
|
|
456
458
|
__exportStar(require("./json-result-list-owner-two-park-operation-work-order-response-shi-statistics-dto"), exports);
|
|
457
459
|
__exportStar(require("./json-result-list-park-drop-down-box-dto"), exports);
|
|
460
|
+
__exportStar(require("./json-result-list-park-list-dto"), exports);
|
|
458
461
|
__exportStar(require("./json-result-list-plan-calendar-list-vo"), exports);
|
|
459
462
|
__exportStar(require("./json-result-list-plan-calendar-vo"), exports);
|
|
460
463
|
__exportStar(require("./json-result-list-renovation-activity-list-vo"), exports);
|
|
@@ -693,6 +696,7 @@ __exportStar(require("./park-center-attribute-enum"), exports);
|
|
|
693
696
|
__exportStar(require("./park-drop-down-box-dto"), exports);
|
|
694
697
|
__exportStar(require("./park-info-dto"), exports);
|
|
695
698
|
__exportStar(require("./park-info-edit-vo"), exports);
|
|
699
|
+
__exportStar(require("./park-list-dto"), exports);
|
|
696
700
|
__exportStar(require("./park-plat-form-enum"), exports);
|
|
697
701
|
__exportStar(require("./park-push-settings-add-bo"), exports);
|
|
698
702
|
__exportStar(require("./park-settings-details-dto"), exports);
|
|
@@ -42,17 +42,17 @@ export interface IPageAccessVO {
|
|
|
42
42
|
'searchCount'?: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
|
-
* @type {
|
|
45
|
+
* @type {number}
|
|
46
46
|
* @memberof IPageAccessVO
|
|
47
|
-
* @deprecated
|
|
48
47
|
*/
|
|
49
|
-
'
|
|
48
|
+
'pages'?: number;
|
|
50
49
|
/**
|
|
51
50
|
*
|
|
52
|
-
* @type {
|
|
51
|
+
* @type {boolean}
|
|
53
52
|
* @memberof IPageAccessVO
|
|
53
|
+
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'hitCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -0,0 +1,62 @@
|
|
|
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
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
13
|
+
import type { CenterListDTO } from './center-list-dto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultListCenterListDTO
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultListCenterListDTO {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultListCenterListDTO
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultListCenterListDTO
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultListCenterListDTO
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 返回数据,可以是任意类型的值
|
|
40
|
+
* @type {Array<CenterListDTO>}
|
|
41
|
+
* @memberof JsonResultListCenterListDTO
|
|
42
|
+
*/
|
|
43
|
+
'data'?: Array<CenterListDTO> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultListCenterListDTO
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultListCenterListDTO
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultListCenterListDTO
|
|
60
|
+
*/
|
|
61
|
+
'requestId'?: string | null;
|
|
62
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,62 @@
|
|
|
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
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
13
|
+
import type { ParkListDTO } from './park-list-dto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultListParkListDTO
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultListParkListDTO {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultListParkListDTO
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultListParkListDTO
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultListParkListDTO
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 返回数据,可以是任意类型的值
|
|
40
|
+
* @type {Array<ParkListDTO>}
|
|
41
|
+
* @memberof JsonResultListParkListDTO
|
|
42
|
+
*/
|
|
43
|
+
'data'?: Array<ParkListDTO> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultListParkListDTO
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultListParkListDTO
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultListParkListDTO
|
|
60
|
+
*/
|
|
61
|
+
'requestId'?: string | null;
|
|
62
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,54 @@
|
|
|
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
|
+
* @interface ParkListDTO
|
|
16
|
+
*/
|
|
17
|
+
export interface ParkListDTO {
|
|
18
|
+
/**
|
|
19
|
+
* 园区ID
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof ParkListDTO
|
|
22
|
+
*/
|
|
23
|
+
'parkId'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* 中心名称
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ParkListDTO
|
|
28
|
+
*/
|
|
29
|
+
'center'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* 中心编码
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ParkListDTO
|
|
34
|
+
*/
|
|
35
|
+
'centerCode'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* 园区名称
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ParkListDTO
|
|
40
|
+
*/
|
|
41
|
+
'parkName'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* srm园区名称
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ParkListDTO
|
|
46
|
+
*/
|
|
47
|
+
'srmPark'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* srm园区编码
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof ParkListDTO
|
|
52
|
+
*/
|
|
53
|
+
'srmParkCode'?: string;
|
|
54
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,47 @@
|
|
|
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 { ParkPlatFormEnum } from './park-plat-form-enum';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* 中心详情
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CenterListDTO
|
|
24
|
+
*/
|
|
25
|
+
export interface CenterListDTO {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {ParkPlatFormEnum}
|
|
29
|
+
* @memberof CenterListDTO
|
|
30
|
+
*/
|
|
31
|
+
'platForm'?: ParkPlatFormEnum;
|
|
32
|
+
/**
|
|
33
|
+
* 所属中心
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof CenterListDTO
|
|
36
|
+
*/
|
|
37
|
+
'center'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 中心名称
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CenterListDTO
|
|
42
|
+
*/
|
|
43
|
+
'centerCode'?: string;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|