@gizone/rrs-client 4.1.3-alpha.189 → 4.1.3-alpha.191

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.
Files changed (44) hide show
  1. package/.openapi-generator/FILES +4 -0
  2. package/apis/common-api.ts +210 -0
  3. package/dist/apis/common-api.d.ts +111 -0
  4. package/dist/apis/common-api.js +150 -0
  5. package/dist/esm/apis/common-api.d.ts +111 -0
  6. package/dist/esm/apis/common-api.js +150 -0
  7. package/dist/esm/models/center-list-dto.d.ts +37 -0
  8. package/dist/esm/models/center-list-dto.js +14 -0
  9. package/dist/esm/models/dept-relation-dto.d.ts +18 -0
  10. package/dist/esm/models/dept-relation.d.ts +18 -0
  11. package/dist/esm/models/get-user-wx200-response.d.ts +8 -8
  12. package/dist/esm/models/index.d.ts +4 -0
  13. package/dist/esm/models/index.js +4 -0
  14. package/dist/esm/models/ipage-access-vo.d.ts +4 -4
  15. package/dist/esm/models/json-result-list-center-list-dto.d.ts +62 -0
  16. package/dist/esm/models/json-result-list-center-list-dto.js +14 -0
  17. package/dist/esm/models/json-result-list-park-list-dto.d.ts +62 -0
  18. package/dist/esm/models/json-result-list-park-list-dto.js +14 -0
  19. package/dist/esm/models/park-list-dto.d.ts +54 -0
  20. package/dist/esm/models/park-list-dto.js +14 -0
  21. package/dist/models/center-list-dto.d.ts +37 -0
  22. package/dist/models/center-list-dto.js +15 -0
  23. package/dist/models/dept-relation-dto.d.ts +18 -0
  24. package/dist/models/dept-relation.d.ts +18 -0
  25. package/dist/models/get-user-wx200-response.d.ts +8 -8
  26. package/dist/models/index.d.ts +4 -0
  27. package/dist/models/index.js +4 -0
  28. package/dist/models/ipage-access-vo.d.ts +4 -4
  29. package/dist/models/json-result-list-center-list-dto.d.ts +62 -0
  30. package/dist/models/json-result-list-center-list-dto.js +15 -0
  31. package/dist/models/json-result-list-park-list-dto.d.ts +62 -0
  32. package/dist/models/json-result-list-park-list-dto.js +15 -0
  33. package/dist/models/park-list-dto.d.ts +54 -0
  34. package/dist/models/park-list-dto.js +15 -0
  35. package/models/center-list-dto.ts +47 -0
  36. package/models/dept-relation-dto.ts +18 -0
  37. package/models/dept-relation.ts +18 -0
  38. package/models/get-user-wx200-response.ts +8 -8
  39. package/models/index.ts +4 -0
  40. package/models/ipage-access-vo.ts +4 -4
  41. package/models/json-result-list-center-list-dto.ts +72 -0
  42. package/models/json-result-list-park-list-dto.ts +72 -0
  43. package/models/park-list-dto.ts +60 -0
  44. 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
  }
@@ -17,12 +17,6 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
17
17
  * @interface GetUserWx200Response
18
18
  */
19
19
  export interface GetUserWx200Response {
20
- /**
21
- *
22
- * @type {object}
23
- * @memberof GetUserWx200Response
24
- */
25
- 'trailerFields'?: object;
26
20
  /**
27
21
  *
28
22
  * @type {number}
@@ -37,10 +31,10 @@ export interface GetUserWx200Response {
37
31
  'headerNames'?: Array<string>;
38
32
  /**
39
33
  *
40
- * @type {GetUserWx200ResponseLocale}
34
+ * @type {object}
41
35
  * @memberof GetUserWx200Response
42
36
  */
43
- 'locale'?: GetUserWx200ResponseLocale;
37
+ 'trailerFields'?: object;
44
38
  /**
45
39
  *
46
40
  * @type {string}
@@ -59,6 +53,12 @@ export interface GetUserWx200Response {
59
53
  * @memberof GetUserWx200Response
60
54
  */
61
55
  'outputStream'?: GetUserWx200ResponseOutputStream;
56
+ /**
57
+ *
58
+ * @type {GetUserWx200ResponseLocale}
59
+ * @memberof GetUserWx200Response
60
+ */
61
+ 'locale'?: GetUserWx200ResponseLocale;
62
62
  /**
63
63
  *
64
64
  * @type {number}
@@ -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';
@@ -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);
@@ -36,10 +36,10 @@ export interface IPageAccessVO {
36
36
  'records'?: Array<AccessVO>;
37
37
  /**
38
38
  *
39
- * @type {boolean}
39
+ * @type {number}
40
40
  * @memberof IPageAccessVO
41
41
  */
42
- 'searchCount'?: boolean;
42
+ 'pages'?: number;
43
43
  /**
44
44
  *
45
45
  * @type {boolean}
@@ -49,10 +49,10 @@ export interface IPageAccessVO {
49
49
  'hitCount'?: boolean;
50
50
  /**
51
51
  *
52
- * @type {number}
52
+ * @type {boolean}
53
53
  * @memberof IPageAccessVO
54
54
  */
55
- 'pages'?: number;
55
+ 'searchCount'?: 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
+
@@ -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