@gizone/rrs-client 4.2.9-alpha.482 → 4.2.9-alpha.484

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.
@@ -126,6 +126,7 @@ models/dashboard-base-search-dto.ts
126
126
  models/dashboard-equipment-park-group-stats-vo.ts
127
127
  models/dashboard-equipment-search-dto.ts
128
128
  models/dashboard-equipment-system-group-stats-vo.ts
129
+ models/dashboard-park-statistics-vo.ts
129
130
  models/dashboard-series-stats-base-vo.ts
130
131
  models/dashboard-surveillance-functional-area-group-stats-vo.ts
131
132
  models/dashboard-surveillance-park-group-stats-vo.ts
@@ -220,6 +221,7 @@ models/json-result-applet-user-type-dto.ts
220
221
  models/json-result-big-decimal.ts
221
222
  models/json-result-boolean.ts
222
223
  models/json-result-calendar-entity.ts
224
+ models/json-result-dashboard-park-statistics-vo.ts
223
225
  models/json-result-disaster-warning-standard-entity.ts
224
226
  models/json-result-equipment-add-redis-list-dto.ts
225
227
  models/json-result-equipment-detail-dto.ts
@@ -38,6 +38,8 @@ import type { DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO } from '../m
38
38
  // @ts-ignore
39
39
  import type { DashboardWorkOrderListSearchDTO } from '../models';
40
40
  // @ts-ignore
41
+ import type { JsonResultDashboardParkStatisticsVO } from '../models';
42
+ // @ts-ignore
41
43
  import type { JsonResultListDashboardAccessParkGroupStatsVO } from '../models';
42
44
  // @ts-ignore
43
45
  import type { JsonResultListDashboardAccessSourceGroupStatsVO } from '../models';
@@ -345,6 +347,46 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
345
347
  options: localVarRequestOptions,
346
348
  };
347
349
  },
350
+ /**
351
+ *
352
+ * @summary 园区-统计
353
+ * @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
354
+ * @param {*} [options] Override http request option.
355
+ * @throws {RequiredError}
356
+ */
357
+ dashboardParkStatistics: async (dashboardBaseSearchDTO: DashboardBaseSearchDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
358
+ // verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
359
+ assertParamExists('dashboardParkStatistics', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO)
360
+ const localVarPath = `/dashboard/park/statistics`;
361
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
362
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
363
+ let baseOptions;
364
+ if (configuration) {
365
+ baseOptions = configuration.baseOptions;
366
+ }
367
+
368
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
369
+ const localVarHeaderParameter = {} as any;
370
+ const localVarQueryParameter = {} as any;
371
+
372
+ // authentication tokenScheme required
373
+ // http bearer authentication required
374
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
375
+
376
+
377
+
378
+ localVarHeaderParameter['Content-Type'] = 'application/json';
379
+
380
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
381
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
382
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
383
+ localVarRequestOptions.data = serializeDataIfNeeded(dashboardBaseSearchDTO, localVarRequestOptions, configuration)
384
+
385
+ return {
386
+ url: toPathString(localVarUrlObj),
387
+ options: localVarRequestOptions,
388
+ };
389
+ },
348
390
  /**
349
391
  *
350
392
  * @summary 监控-功能区分组统计
@@ -966,6 +1008,19 @@ export const DashboardApiFp = function(configuration?: Configuration) {
966
1008
  const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardEquipmentStatisticsByPark']?.[localVarOperationServerIndex]?.url;
967
1009
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
968
1010
  },
1011
+ /**
1012
+ *
1013
+ * @summary 园区-统计
1014
+ * @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
1015
+ * @param {*} [options] Override http request option.
1016
+ * @throws {RequiredError}
1017
+ */
1018
+ async dashboardParkStatistics(dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultDashboardParkStatisticsVO>> {
1019
+ const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardParkStatistics(dashboardBaseSearchDTO, options);
1020
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1021
+ const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardParkStatistics']?.[localVarOperationServerIndex]?.url;
1022
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1023
+ },
969
1024
  /**
970
1025
  *
971
1026
  * @summary 监控-功能区分组统计
@@ -1215,6 +1270,16 @@ export const DashboardApiFactory = function (configuration?: Configuration, base
1215
1270
  dashboardEquipmentStatisticsByPark(requestParameters: DashboardApiDashboardEquipmentStatisticsByParkRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardEquipmentParkGroupStatsVO> {
1216
1271
  return localVarFp.dashboardEquipmentStatisticsByPark(requestParameters.dashboardEquipmentSearchDTO, options).then((request) => request(axios, basePath));
1217
1272
  },
1273
+ /**
1274
+ *
1275
+ * @summary 园区-统计
1276
+ * @param {DashboardApiDashboardParkStatisticsRequest} requestParameters Request parameters.
1277
+ * @param {*} [options] Override http request option.
1278
+ * @throws {RequiredError}
1279
+ */
1280
+ dashboardParkStatistics(requestParameters: DashboardApiDashboardParkStatisticsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultDashboardParkStatisticsVO> {
1281
+ return localVarFp.dashboardParkStatistics(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
1282
+ },
1218
1283
  /**
1219
1284
  *
1220
1285
  * @summary 监控-功能区分组统计
@@ -1446,6 +1511,20 @@ export interface DashboardApiDashboardEquipmentStatisticsByParkRequest {
1446
1511
  readonly dashboardEquipmentSearchDTO: DashboardEquipmentSearchDTO
1447
1512
  }
1448
1513
 
1514
+ /**
1515
+ * Request parameters for dashboardParkStatistics operation in DashboardApi.
1516
+ * @export
1517
+ * @interface DashboardApiDashboardParkStatisticsRequest
1518
+ */
1519
+ export interface DashboardApiDashboardParkStatisticsRequest {
1520
+ /**
1521
+ *
1522
+ * @type {DashboardBaseSearchDTO}
1523
+ * @memberof DashboardApiDashboardParkStatistics
1524
+ */
1525
+ readonly dashboardBaseSearchDTO: DashboardBaseSearchDTO
1526
+ }
1527
+
1449
1528
  /**
1450
1529
  * Request parameters for dashboardSurveillanceStatisticsByFunctionalArea operation in DashboardApi.
1451
1530
  * @export
@@ -1719,6 +1798,18 @@ export class DashboardApi extends BaseAPI {
1719
1798
  return DashboardApiFp(this.configuration).dashboardEquipmentStatisticsByPark(requestParameters.dashboardEquipmentSearchDTO, options).then((request) => request(this.axios, this.basePath));
1720
1799
  }
1721
1800
 
1801
+ /**
1802
+ *
1803
+ * @summary 园区-统计
1804
+ * @param {DashboardApiDashboardParkStatisticsRequest} requestParameters Request parameters.
1805
+ * @param {*} [options] Override http request option.
1806
+ * @throws {RequiredError}
1807
+ * @memberof DashboardApi
1808
+ */
1809
+ public dashboardParkStatistics(requestParameters: DashboardApiDashboardParkStatisticsRequest, options?: RawAxiosRequestConfig) {
1810
+ return DashboardApiFp(this.configuration).dashboardParkStatistics(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
1811
+ }
1812
+
1722
1813
  /**
1723
1814
  *
1724
1815
  * @summary 监控-功能区分组统计
@@ -20,6 +20,7 @@ import type { DashboardWorkOrderByParkSearchDTO } from '../models';
20
20
  import type { DashboardWorkOrderByWorkOrderTypeSearchDTO } from '../models';
21
21
  import type { DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO } from '../models';
22
22
  import type { DashboardWorkOrderListSearchDTO } from '../models';
23
+ import type { JsonResultDashboardParkStatisticsVO } from '../models';
23
24
  import type { JsonResultListDashboardAccessParkGroupStatsVO } from '../models';
24
25
  import type { JsonResultListDashboardAccessSourceGroupStatsVO } from '../models';
25
26
  import type { JsonResultListDashboardEquipmentParkGroupStatsVO } from '../models';
@@ -92,6 +93,14 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
92
93
  * @throws {RequiredError}
93
94
  */
94
95
  dashboardEquipmentStatisticsByPark: (dashboardEquipmentSearchDTO: DashboardEquipmentSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
96
+ /**
97
+ *
98
+ * @summary 园区-统计
99
+ * @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
100
+ * @param {*} [options] Override http request option.
101
+ * @throws {RequiredError}
102
+ */
103
+ dashboardParkStatistics: (dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
95
104
  /**
96
105
  *
97
106
  * @summary 监控-功能区分组统计
@@ -258,6 +267,14 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
258
267
  * @throws {RequiredError}
259
268
  */
260
269
  dashboardEquipmentStatisticsByPark(dashboardEquipmentSearchDTO: DashboardEquipmentSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardEquipmentParkGroupStatsVO>>;
270
+ /**
271
+ *
272
+ * @summary 园区-统计
273
+ * @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
274
+ * @param {*} [options] Override http request option.
275
+ * @throws {RequiredError}
276
+ */
277
+ dashboardParkStatistics(dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultDashboardParkStatisticsVO>>;
261
278
  /**
262
279
  *
263
280
  * @summary 监控-功能区分组统计
@@ -424,6 +441,14 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
424
441
  * @throws {RequiredError}
425
442
  */
426
443
  dashboardEquipmentStatisticsByPark(requestParameters: DashboardApiDashboardEquipmentStatisticsByParkRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardEquipmentParkGroupStatsVO>;
444
+ /**
445
+ *
446
+ * @summary 园区-统计
447
+ * @param {DashboardApiDashboardParkStatisticsRequest} requestParameters Request parameters.
448
+ * @param {*} [options] Override http request option.
449
+ * @throws {RequiredError}
450
+ */
451
+ dashboardParkStatistics(requestParameters: DashboardApiDashboardParkStatisticsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultDashboardParkStatisticsVO>;
427
452
  /**
428
453
  *
429
454
  * @summary 监控-功能区分组统计
@@ -620,6 +645,19 @@ export interface DashboardApiDashboardEquipmentStatisticsByParkRequest {
620
645
  */
621
646
  readonly dashboardEquipmentSearchDTO: DashboardEquipmentSearchDTO;
622
647
  }
648
+ /**
649
+ * Request parameters for dashboardParkStatistics operation in DashboardApi.
650
+ * @export
651
+ * @interface DashboardApiDashboardParkStatisticsRequest
652
+ */
653
+ export interface DashboardApiDashboardParkStatisticsRequest {
654
+ /**
655
+ *
656
+ * @type {DashboardBaseSearchDTO}
657
+ * @memberof DashboardApiDashboardParkStatistics
658
+ */
659
+ readonly dashboardBaseSearchDTO: DashboardBaseSearchDTO;
660
+ }
623
661
  /**
624
662
  * Request parameters for dashboardSurveillanceStatisticsByFunctionalArea operation in DashboardApi.
625
663
  * @export
@@ -859,6 +897,15 @@ export declare class DashboardApi extends BaseAPI {
859
897
  * @memberof DashboardApi
860
898
  */
861
899
  dashboardEquipmentStatisticsByPark(requestParameters: DashboardApiDashboardEquipmentStatisticsByParkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListDashboardEquipmentParkGroupStatsVO, any, {}>>;
900
+ /**
901
+ *
902
+ * @summary 园区-统计
903
+ * @param {DashboardApiDashboardParkStatisticsRequest} requestParameters Request parameters.
904
+ * @param {*} [options] Override http request option.
905
+ * @throws {RequiredError}
906
+ * @memberof DashboardApi
907
+ */
908
+ dashboardParkStatistics(requestParameters: DashboardApiDashboardParkStatisticsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultDashboardParkStatisticsVO, any, {}>>;
862
909
  /**
863
910
  *
864
911
  * @summary 监控-功能区分组统计
@@ -266,6 +266,39 @@ const DashboardApiAxiosParamCreator = function (configuration) {
266
266
  options: localVarRequestOptions,
267
267
  };
268
268
  }),
269
+ /**
270
+ *
271
+ * @summary 园区-统计
272
+ * @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
273
+ * @param {*} [options] Override http request option.
274
+ * @throws {RequiredError}
275
+ */
276
+ dashboardParkStatistics: (dashboardBaseSearchDTO_1, ...args_1) => __awaiter(this, [dashboardBaseSearchDTO_1, ...args_1], void 0, function* (dashboardBaseSearchDTO, options = {}) {
277
+ // verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
278
+ (0, common_1.assertParamExists)('dashboardParkStatistics', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO);
279
+ const localVarPath = `/dashboard/park/statistics`;
280
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
281
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
282
+ let baseOptions;
283
+ if (configuration) {
284
+ baseOptions = configuration.baseOptions;
285
+ }
286
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
287
+ const localVarHeaderParameter = {};
288
+ const localVarQueryParameter = {};
289
+ // authentication tokenScheme required
290
+ // http bearer authentication required
291
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
292
+ localVarHeaderParameter['Content-Type'] = 'application/json';
293
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
294
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
295
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
296
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(dashboardBaseSearchDTO, localVarRequestOptions, configuration);
297
+ return {
298
+ url: (0, common_1.toPathString)(localVarUrlObj),
299
+ options: localVarRequestOptions,
300
+ };
301
+ }),
269
302
  /**
270
303
  *
271
304
  * @summary 监控-功能区分组统计
@@ -817,6 +850,22 @@ const DashboardApiFp = function (configuration) {
817
850
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
818
851
  });
819
852
  },
853
+ /**
854
+ *
855
+ * @summary 园区-统计
856
+ * @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
857
+ * @param {*} [options] Override http request option.
858
+ * @throws {RequiredError}
859
+ */
860
+ dashboardParkStatistics(dashboardBaseSearchDTO, options) {
861
+ return __awaiter(this, void 0, void 0, function* () {
862
+ var _a, _b, _c;
863
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardParkStatistics(dashboardBaseSearchDTO, options);
864
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
865
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DashboardApi.dashboardParkStatistics']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
866
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
867
+ });
868
+ },
820
869
  /**
821
870
  *
822
871
  * @summary 监控-功能区分组统计
@@ -1105,6 +1154,16 @@ const DashboardApiFactory = function (configuration, basePath, axios) {
1105
1154
  dashboardEquipmentStatisticsByPark(requestParameters, options) {
1106
1155
  return localVarFp.dashboardEquipmentStatisticsByPark(requestParameters.dashboardEquipmentSearchDTO, options).then((request) => request(axios, basePath));
1107
1156
  },
1157
+ /**
1158
+ *
1159
+ * @summary 园区-统计
1160
+ * @param {DashboardApiDashboardParkStatisticsRequest} requestParameters Request parameters.
1161
+ * @param {*} [options] Override http request option.
1162
+ * @throws {RequiredError}
1163
+ */
1164
+ dashboardParkStatistics(requestParameters, options) {
1165
+ return localVarFp.dashboardParkStatistics(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
1166
+ },
1108
1167
  /**
1109
1168
  *
1110
1169
  * @summary 监控-功能区分组统计
@@ -1322,6 +1381,17 @@ class DashboardApi extends base_1.BaseAPI {
1322
1381
  dashboardEquipmentStatisticsByPark(requestParameters, options) {
1323
1382
  return (0, exports.DashboardApiFp)(this.configuration).dashboardEquipmentStatisticsByPark(requestParameters.dashboardEquipmentSearchDTO, options).then((request) => request(this.axios, this.basePath));
1324
1383
  }
1384
+ /**
1385
+ *
1386
+ * @summary 园区-统计
1387
+ * @param {DashboardApiDashboardParkStatisticsRequest} requestParameters Request parameters.
1388
+ * @param {*} [options] Override http request option.
1389
+ * @throws {RequiredError}
1390
+ * @memberof DashboardApi
1391
+ */
1392
+ dashboardParkStatistics(requestParameters, options) {
1393
+ return (0, exports.DashboardApiFp)(this.configuration).dashboardParkStatistics(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
1394
+ }
1325
1395
  /**
1326
1396
  *
1327
1397
  * @summary 监控-功能区分组统计
@@ -20,6 +20,7 @@ import type { DashboardWorkOrderByParkSearchDTO } from '../models';
20
20
  import type { DashboardWorkOrderByWorkOrderTypeSearchDTO } from '../models';
21
21
  import type { DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO } from '../models';
22
22
  import type { DashboardWorkOrderListSearchDTO } from '../models';
23
+ import type { JsonResultDashboardParkStatisticsVO } from '../models';
23
24
  import type { JsonResultListDashboardAccessParkGroupStatsVO } from '../models';
24
25
  import type { JsonResultListDashboardAccessSourceGroupStatsVO } from '../models';
25
26
  import type { JsonResultListDashboardEquipmentParkGroupStatsVO } from '../models';
@@ -92,6 +93,14 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
92
93
  * @throws {RequiredError}
93
94
  */
94
95
  dashboardEquipmentStatisticsByPark: (dashboardEquipmentSearchDTO: DashboardEquipmentSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
96
+ /**
97
+ *
98
+ * @summary 园区-统计
99
+ * @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
100
+ * @param {*} [options] Override http request option.
101
+ * @throws {RequiredError}
102
+ */
103
+ dashboardParkStatistics: (dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
95
104
  /**
96
105
  *
97
106
  * @summary 监控-功能区分组统计
@@ -258,6 +267,14 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
258
267
  * @throws {RequiredError}
259
268
  */
260
269
  dashboardEquipmentStatisticsByPark(dashboardEquipmentSearchDTO: DashboardEquipmentSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardEquipmentParkGroupStatsVO>>;
270
+ /**
271
+ *
272
+ * @summary 园区-统计
273
+ * @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
274
+ * @param {*} [options] Override http request option.
275
+ * @throws {RequiredError}
276
+ */
277
+ dashboardParkStatistics(dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultDashboardParkStatisticsVO>>;
261
278
  /**
262
279
  *
263
280
  * @summary 监控-功能区分组统计
@@ -424,6 +441,14 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
424
441
  * @throws {RequiredError}
425
442
  */
426
443
  dashboardEquipmentStatisticsByPark(requestParameters: DashboardApiDashboardEquipmentStatisticsByParkRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardEquipmentParkGroupStatsVO>;
444
+ /**
445
+ *
446
+ * @summary 园区-统计
447
+ * @param {DashboardApiDashboardParkStatisticsRequest} requestParameters Request parameters.
448
+ * @param {*} [options] Override http request option.
449
+ * @throws {RequiredError}
450
+ */
451
+ dashboardParkStatistics(requestParameters: DashboardApiDashboardParkStatisticsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultDashboardParkStatisticsVO>;
427
452
  /**
428
453
  *
429
454
  * @summary 监控-功能区分组统计
@@ -620,6 +645,19 @@ export interface DashboardApiDashboardEquipmentStatisticsByParkRequest {
620
645
  */
621
646
  readonly dashboardEquipmentSearchDTO: DashboardEquipmentSearchDTO;
622
647
  }
648
+ /**
649
+ * Request parameters for dashboardParkStatistics operation in DashboardApi.
650
+ * @export
651
+ * @interface DashboardApiDashboardParkStatisticsRequest
652
+ */
653
+ export interface DashboardApiDashboardParkStatisticsRequest {
654
+ /**
655
+ *
656
+ * @type {DashboardBaseSearchDTO}
657
+ * @memberof DashboardApiDashboardParkStatistics
658
+ */
659
+ readonly dashboardBaseSearchDTO: DashboardBaseSearchDTO;
660
+ }
623
661
  /**
624
662
  * Request parameters for dashboardSurveillanceStatisticsByFunctionalArea operation in DashboardApi.
625
663
  * @export
@@ -859,6 +897,15 @@ export declare class DashboardApi extends BaseAPI {
859
897
  * @memberof DashboardApi
860
898
  */
861
899
  dashboardEquipmentStatisticsByPark(requestParameters: DashboardApiDashboardEquipmentStatisticsByParkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListDashboardEquipmentParkGroupStatsVO, any, {}>>;
900
+ /**
901
+ *
902
+ * @summary 园区-统计
903
+ * @param {DashboardApiDashboardParkStatisticsRequest} requestParameters Request parameters.
904
+ * @param {*} [options] Override http request option.
905
+ * @throws {RequiredError}
906
+ * @memberof DashboardApi
907
+ */
908
+ dashboardParkStatistics(requestParameters: DashboardApiDashboardParkStatisticsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultDashboardParkStatisticsVO, any, {}>>;
862
909
  /**
863
910
  *
864
911
  * @summary 监控-功能区分组统计
@@ -263,6 +263,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
263
263
  options: localVarRequestOptions,
264
264
  };
265
265
  }),
266
+ /**
267
+ *
268
+ * @summary 园区-统计
269
+ * @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
270
+ * @param {*} [options] Override http request option.
271
+ * @throws {RequiredError}
272
+ */
273
+ dashboardParkStatistics: (dashboardBaseSearchDTO_1, ...args_1) => __awaiter(this, [dashboardBaseSearchDTO_1, ...args_1], void 0, function* (dashboardBaseSearchDTO, options = {}) {
274
+ // verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
275
+ assertParamExists('dashboardParkStatistics', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO);
276
+ const localVarPath = `/dashboard/park/statistics`;
277
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
278
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
279
+ let baseOptions;
280
+ if (configuration) {
281
+ baseOptions = configuration.baseOptions;
282
+ }
283
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
284
+ const localVarHeaderParameter = {};
285
+ const localVarQueryParameter = {};
286
+ // authentication tokenScheme required
287
+ // http bearer authentication required
288
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
289
+ localVarHeaderParameter['Content-Type'] = 'application/json';
290
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
291
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
292
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
293
+ localVarRequestOptions.data = serializeDataIfNeeded(dashboardBaseSearchDTO, localVarRequestOptions, configuration);
294
+ return {
295
+ url: toPathString(localVarUrlObj),
296
+ options: localVarRequestOptions,
297
+ };
298
+ }),
266
299
  /**
267
300
  *
268
301
  * @summary 监控-功能区分组统计
@@ -813,6 +846,22 @@ export const DashboardApiFp = function (configuration) {
813
846
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
814
847
  });
815
848
  },
849
+ /**
850
+ *
851
+ * @summary 园区-统计
852
+ * @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
853
+ * @param {*} [options] Override http request option.
854
+ * @throws {RequiredError}
855
+ */
856
+ dashboardParkStatistics(dashboardBaseSearchDTO, options) {
857
+ return __awaiter(this, void 0, void 0, function* () {
858
+ var _a, _b, _c;
859
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardParkStatistics(dashboardBaseSearchDTO, options);
860
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
861
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardParkStatistics']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
862
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
863
+ });
864
+ },
816
865
  /**
817
866
  *
818
867
  * @summary 监控-功能区分组统计
@@ -1100,6 +1149,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
1100
1149
  dashboardEquipmentStatisticsByPark(requestParameters, options) {
1101
1150
  return localVarFp.dashboardEquipmentStatisticsByPark(requestParameters.dashboardEquipmentSearchDTO, options).then((request) => request(axios, basePath));
1102
1151
  },
1152
+ /**
1153
+ *
1154
+ * @summary 园区-统计
1155
+ * @param {DashboardApiDashboardParkStatisticsRequest} requestParameters Request parameters.
1156
+ * @param {*} [options] Override http request option.
1157
+ * @throws {RequiredError}
1158
+ */
1159
+ dashboardParkStatistics(requestParameters, options) {
1160
+ return localVarFp.dashboardParkStatistics(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
1161
+ },
1103
1162
  /**
1104
1163
  *
1105
1164
  * @summary 监控-功能区分组统计
@@ -1316,6 +1375,17 @@ export class DashboardApi extends BaseAPI {
1316
1375
  dashboardEquipmentStatisticsByPark(requestParameters, options) {
1317
1376
  return DashboardApiFp(this.configuration).dashboardEquipmentStatisticsByPark(requestParameters.dashboardEquipmentSearchDTO, options).then((request) => request(this.axios, this.basePath));
1318
1377
  }
1378
+ /**
1379
+ *
1380
+ * @summary 园区-统计
1381
+ * @param {DashboardApiDashboardParkStatisticsRequest} requestParameters Request parameters.
1382
+ * @param {*} [options] Override http request option.
1383
+ * @throws {RequiredError}
1384
+ * @memberof DashboardApi
1385
+ */
1386
+ dashboardParkStatistics(requestParameters, options) {
1387
+ return DashboardApiFp(this.configuration).dashboardParkStatistics(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
1388
+ }
1319
1389
  /**
1320
1390
  *
1321
1391
  * @summary 监控-功能区分组统计
@@ -0,0 +1,30 @@
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 DashboardParkStatisticsVO
16
+ */
17
+ export interface DashboardParkStatisticsVO {
18
+ /**
19
+ * 总面积
20
+ * @type {number}
21
+ * @memberof DashboardParkStatisticsVO
22
+ */
23
+ 'totalArea'?: number;
24
+ /**
25
+ * 监控数量
26
+ * @type {number}
27
+ * @memberof DashboardParkStatisticsVO
28
+ */
29
+ 'surveillanceCount'?: number;
30
+ }
@@ -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 {};
@@ -82,6 +82,7 @@ export * from './dashboard-base-search-dto';
82
82
  export * from './dashboard-equipment-park-group-stats-vo';
83
83
  export * from './dashboard-equipment-search-dto';
84
84
  export * from './dashboard-equipment-system-group-stats-vo';
85
+ export * from './dashboard-park-statistics-vo';
85
86
  export * from './dashboard-series-stats-base-vo';
86
87
  export * from './dashboard-surveillance-functional-area-group-stats-vo';
87
88
  export * from './dashboard-surveillance-park-group-stats-vo';
@@ -176,6 +177,7 @@ export * from './json-result-applet-user-type-dto';
176
177
  export * from './json-result-big-decimal';
177
178
  export * from './json-result-boolean';
178
179
  export * from './json-result-calendar-entity';
180
+ export * from './json-result-dashboard-park-statistics-vo';
179
181
  export * from './json-result-disaster-warning-standard-entity';
180
182
  export * from './json-result-equipment-add-redis-list-dto';
181
183
  export * from './json-result-equipment-detail-dto';
@@ -82,6 +82,7 @@ export * from './dashboard-base-search-dto';
82
82
  export * from './dashboard-equipment-park-group-stats-vo';
83
83
  export * from './dashboard-equipment-search-dto';
84
84
  export * from './dashboard-equipment-system-group-stats-vo';
85
+ export * from './dashboard-park-statistics-vo';
85
86
  export * from './dashboard-series-stats-base-vo';
86
87
  export * from './dashboard-surveillance-functional-area-group-stats-vo';
87
88
  export * from './dashboard-surveillance-park-group-stats-vo';
@@ -176,6 +177,7 @@ export * from './json-result-applet-user-type-dto';
176
177
  export * from './json-result-big-decimal';
177
178
  export * from './json-result-boolean';
178
179
  export * from './json-result-calendar-entity';
180
+ export * from './json-result-dashboard-park-statistics-vo';
179
181
  export * from './json-result-disaster-warning-standard-entity';
180
182
  export * from './json-result-equipment-add-redis-list-dto';
181
183
  export * from './json-result-equipment-detail-dto';
@@ -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 { DashboardParkStatisticsVO } from './dashboard-park-statistics-vo';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultDashboardParkStatisticsVO
18
+ */
19
+ export interface JsonResultDashboardParkStatisticsVO {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultDashboardParkStatisticsVO
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultDashboardParkStatisticsVO
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultDashboardParkStatisticsVO
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ *
40
+ * @type {DashboardParkStatisticsVO}
41
+ * @memberof JsonResultDashboardParkStatisticsVO
42
+ */
43
+ 'data'?: DashboardParkStatisticsVO | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultDashboardParkStatisticsVO
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultDashboardParkStatisticsVO
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultDashboardParkStatisticsVO
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,30 @@
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 DashboardParkStatisticsVO
16
+ */
17
+ export interface DashboardParkStatisticsVO {
18
+ /**
19
+ * 总面积
20
+ * @type {number}
21
+ * @memberof DashboardParkStatisticsVO
22
+ */
23
+ 'totalArea'?: number;
24
+ /**
25
+ * 监控数量
26
+ * @type {number}
27
+ * @memberof DashboardParkStatisticsVO
28
+ */
29
+ 'surveillanceCount'?: number;
30
+ }
@@ -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 });
@@ -82,6 +82,7 @@ export * from './dashboard-base-search-dto';
82
82
  export * from './dashboard-equipment-park-group-stats-vo';
83
83
  export * from './dashboard-equipment-search-dto';
84
84
  export * from './dashboard-equipment-system-group-stats-vo';
85
+ export * from './dashboard-park-statistics-vo';
85
86
  export * from './dashboard-series-stats-base-vo';
86
87
  export * from './dashboard-surveillance-functional-area-group-stats-vo';
87
88
  export * from './dashboard-surveillance-park-group-stats-vo';
@@ -176,6 +177,7 @@ export * from './json-result-applet-user-type-dto';
176
177
  export * from './json-result-big-decimal';
177
178
  export * from './json-result-boolean';
178
179
  export * from './json-result-calendar-entity';
180
+ export * from './json-result-dashboard-park-statistics-vo';
179
181
  export * from './json-result-disaster-warning-standard-entity';
180
182
  export * from './json-result-equipment-add-redis-list-dto';
181
183
  export * from './json-result-equipment-detail-dto';
@@ -98,6 +98,7 @@ __exportStar(require("./dashboard-base-search-dto"), exports);
98
98
  __exportStar(require("./dashboard-equipment-park-group-stats-vo"), exports);
99
99
  __exportStar(require("./dashboard-equipment-search-dto"), exports);
100
100
  __exportStar(require("./dashboard-equipment-system-group-stats-vo"), exports);
101
+ __exportStar(require("./dashboard-park-statistics-vo"), exports);
101
102
  __exportStar(require("./dashboard-series-stats-base-vo"), exports);
102
103
  __exportStar(require("./dashboard-surveillance-functional-area-group-stats-vo"), exports);
103
104
  __exportStar(require("./dashboard-surveillance-park-group-stats-vo"), exports);
@@ -192,6 +193,7 @@ __exportStar(require("./json-result-applet-user-type-dto"), exports);
192
193
  __exportStar(require("./json-result-big-decimal"), exports);
193
194
  __exportStar(require("./json-result-boolean"), exports);
194
195
  __exportStar(require("./json-result-calendar-entity"), exports);
196
+ __exportStar(require("./json-result-dashboard-park-statistics-vo"), exports);
195
197
  __exportStar(require("./json-result-disaster-warning-standard-entity"), exports);
196
198
  __exportStar(require("./json-result-equipment-add-redis-list-dto"), exports);
197
199
  __exportStar(require("./json-result-equipment-detail-dto"), exports);
@@ -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 { DashboardParkStatisticsVO } from './dashboard-park-statistics-vo';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultDashboardParkStatisticsVO
18
+ */
19
+ export interface JsonResultDashboardParkStatisticsVO {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultDashboardParkStatisticsVO
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultDashboardParkStatisticsVO
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultDashboardParkStatisticsVO
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ *
40
+ * @type {DashboardParkStatisticsVO}
41
+ * @memberof JsonResultDashboardParkStatisticsVO
42
+ */
43
+ 'data'?: DashboardParkStatisticsVO | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultDashboardParkStatisticsVO
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultDashboardParkStatisticsVO
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultDashboardParkStatisticsVO
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,36 @@
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 DashboardParkStatisticsVO
21
+ */
22
+ export interface DashboardParkStatisticsVO {
23
+ /**
24
+ * 总面积
25
+ * @type {number}
26
+ * @memberof DashboardParkStatisticsVO
27
+ */
28
+ 'totalArea'?: number;
29
+ /**
30
+ * 监控数量
31
+ * @type {number}
32
+ * @memberof DashboardParkStatisticsVO
33
+ */
34
+ 'surveillanceCount'?: number;
35
+ }
36
+
package/models/index.ts CHANGED
@@ -82,6 +82,7 @@ export * from './dashboard-base-search-dto';
82
82
  export * from './dashboard-equipment-park-group-stats-vo';
83
83
  export * from './dashboard-equipment-search-dto';
84
84
  export * from './dashboard-equipment-system-group-stats-vo';
85
+ export * from './dashboard-park-statistics-vo';
85
86
  export * from './dashboard-series-stats-base-vo';
86
87
  export * from './dashboard-surveillance-functional-area-group-stats-vo';
87
88
  export * from './dashboard-surveillance-park-group-stats-vo';
@@ -176,6 +177,7 @@ export * from './json-result-applet-user-type-dto';
176
177
  export * from './json-result-big-decimal';
177
178
  export * from './json-result-boolean';
178
179
  export * from './json-result-calendar-entity';
180
+ export * from './json-result-dashboard-park-statistics-vo';
179
181
  export * from './json-result-disaster-warning-standard-entity';
180
182
  export * from './json-result-equipment-add-redis-list-dto';
181
183
  export * from './json-result-equipment-detail-dto';
@@ -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 { DashboardParkStatisticsVO } from './dashboard-park-statistics-vo';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface JsonResultDashboardParkStatisticsVO
27
+ */
28
+ export interface JsonResultDashboardParkStatisticsVO {
29
+ /**
30
+ * 错误码,0:成功,其他:失败
31
+ * @type {number}
32
+ * @memberof JsonResultDashboardParkStatisticsVO
33
+ */
34
+ 'code'?: number;
35
+ /**
36
+ * 错误消息
37
+ * @type {string}
38
+ * @memberof JsonResultDashboardParkStatisticsVO
39
+ */
40
+ 'msg'?: string;
41
+ /**
42
+ * 错误堆栈
43
+ * @type {string}
44
+ * @memberof JsonResultDashboardParkStatisticsVO
45
+ */
46
+ 'stacks'?: string;
47
+ /**
48
+ *
49
+ * @type {DashboardParkStatisticsVO}
50
+ * @memberof JsonResultDashboardParkStatisticsVO
51
+ */
52
+ 'data'?: DashboardParkStatisticsVO | null;
53
+ /**
54
+ *
55
+ * @type {BaseErrorResult}
56
+ * @memberof JsonResultDashboardParkStatisticsVO
57
+ */
58
+ 'error'?: BaseErrorResult | null;
59
+ /**
60
+ * 日志追踪ID
61
+ * @type {string}
62
+ * @memberof JsonResultDashboardParkStatisticsVO
63
+ */
64
+ 'traceId'?: string | null;
65
+ /**
66
+ * requestId
67
+ * @type {string}
68
+ * @memberof JsonResultDashboardParkStatisticsVO
69
+ */
70
+ 'requestId'?: string | null;
71
+ }
72
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.2.9-alpha.482",
3
+ "version": "4.2.9-alpha.484",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {