@gizone/rrs-client 4.2.9-alpha.590 → 4.2.9-alpha.591
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/apis/energy-cost-analysis-controller-api.ts +444 -0
- package/apis/energy-cost-record-controller-api.ts +174 -0
- package/dist/apis/energy-cost-analysis-controller-api.d.ts +252 -0
- package/dist/apis/energy-cost-analysis-controller-api.js +246 -0
- package/dist/apis/energy-cost-record-controller-api.d.ts +102 -0
- package/dist/apis/energy-cost-record-controller-api.js +107 -1
- package/dist/esm/apis/energy-cost-analysis-controller-api.d.ts +252 -0
- package/dist/esm/apis/energy-cost-analysis-controller-api.js +246 -0
- package/dist/esm/apis/energy-cost-record-controller-api.d.ts +102 -0
- package/dist/esm/apis/energy-cost-record-controller-api.js +106 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
- package/models/ipage-energy-cost-record-info-vo.ts +4 -4
- package/ossutil.log +1119 -1116
- package/package.json +1 -1
|
@@ -64,6 +64,20 @@ export declare const EnergyCostRecordControllerApiAxiosParamCreator: (configurat
|
|
|
64
64
|
* @throws {RequiredError}
|
|
65
65
|
*/
|
|
66
66
|
energyCostAddRecordList: (page?: number, size?: number, billCode?: string, startTime?: string, endTime?: string, energyTypes?: Array<EnergyCostAddRecordListEnergyTypesEnum>, status?: Array<number>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @summary 新增能源消耗-列表导出
|
|
70
|
+
* @param {number} [page]
|
|
71
|
+
* @param {number} [size]
|
|
72
|
+
* @param {string} [billCode]
|
|
73
|
+
* @param {string} [startTime]
|
|
74
|
+
* @param {string} [endTime]
|
|
75
|
+
* @param {Array<EnergyCostAddRecordListExportEnergyTypesEnum>} [energyTypes]
|
|
76
|
+
* @param {Array<number>} [status]
|
|
77
|
+
* @param {*} [options] Override http request option.
|
|
78
|
+
* @throws {RequiredError}
|
|
79
|
+
*/
|
|
80
|
+
energyCostAddRecordListExport: (page?: number, size?: number, billCode?: string, startTime?: string, endTime?: string, energyTypes?: Array<EnergyCostAddRecordListExportEnergyTypesEnum>, status?: Array<number>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67
81
|
/**
|
|
68
82
|
* 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
|
|
69
83
|
* @summary 计算能源消耗(不保存)
|
|
@@ -142,6 +156,20 @@ export declare const EnergyCostRecordControllerApiFp: (configuration?: Configura
|
|
|
142
156
|
* @throws {RequiredError}
|
|
143
157
|
*/
|
|
144
158
|
energyCostAddRecordList(page?: number, size?: number, billCode?: string, startTime?: string, endTime?: string, energyTypes?: Array<EnergyCostAddRecordListEnergyTypesEnum>, status?: Array<number>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultIPageEnergyCostRecordInfoVO>>;
|
|
159
|
+
/**
|
|
160
|
+
*
|
|
161
|
+
* @summary 新增能源消耗-列表导出
|
|
162
|
+
* @param {number} [page]
|
|
163
|
+
* @param {number} [size]
|
|
164
|
+
* @param {string} [billCode]
|
|
165
|
+
* @param {string} [startTime]
|
|
166
|
+
* @param {string} [endTime]
|
|
167
|
+
* @param {Array<EnergyCostAddRecordListExportEnergyTypesEnum>} [energyTypes]
|
|
168
|
+
* @param {Array<number>} [status]
|
|
169
|
+
* @param {*} [options] Override http request option.
|
|
170
|
+
* @throws {RequiredError}
|
|
171
|
+
*/
|
|
172
|
+
energyCostAddRecordListExport(page?: number, size?: number, billCode?: string, startTime?: string, endTime?: string, energyTypes?: Array<EnergyCostAddRecordListExportEnergyTypesEnum>, status?: Array<number>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
145
173
|
/**
|
|
146
174
|
* 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
|
|
147
175
|
* @summary 计算能源消耗(不保存)
|
|
@@ -212,6 +240,14 @@ export declare const EnergyCostRecordControllerApiFactory: (configuration?: Conf
|
|
|
212
240
|
* @throws {RequiredError}
|
|
213
241
|
*/
|
|
214
242
|
energyCostAddRecordList(requestParameters?: EnergyCostRecordControllerApiEnergyCostAddRecordListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultIPageEnergyCostRecordInfoVO>;
|
|
243
|
+
/**
|
|
244
|
+
*
|
|
245
|
+
* @summary 新增能源消耗-列表导出
|
|
246
|
+
* @param {EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest} requestParameters Request parameters.
|
|
247
|
+
* @param {*} [options] Override http request option.
|
|
248
|
+
* @throws {RequiredError}
|
|
249
|
+
*/
|
|
250
|
+
energyCostAddRecordListExport(requestParameters?: EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
215
251
|
/**
|
|
216
252
|
* 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
|
|
217
253
|
* @summary 计算能源消耗(不保存)
|
|
@@ -345,6 +381,55 @@ export interface EnergyCostRecordControllerApiEnergyCostAddRecordListRequest {
|
|
|
345
381
|
*/
|
|
346
382
|
readonly status?: Array<number>;
|
|
347
383
|
}
|
|
384
|
+
/**
|
|
385
|
+
* Request parameters for energyCostAddRecordListExport operation in EnergyCostRecordControllerApi.
|
|
386
|
+
* @export
|
|
387
|
+
* @interface EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest
|
|
388
|
+
*/
|
|
389
|
+
export interface EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest {
|
|
390
|
+
/**
|
|
391
|
+
*
|
|
392
|
+
* @type {number}
|
|
393
|
+
* @memberof EnergyCostRecordControllerApiEnergyCostAddRecordListExport
|
|
394
|
+
*/
|
|
395
|
+
readonly page?: number;
|
|
396
|
+
/**
|
|
397
|
+
*
|
|
398
|
+
* @type {number}
|
|
399
|
+
* @memberof EnergyCostRecordControllerApiEnergyCostAddRecordListExport
|
|
400
|
+
*/
|
|
401
|
+
readonly size?: number;
|
|
402
|
+
/**
|
|
403
|
+
*
|
|
404
|
+
* @type {string}
|
|
405
|
+
* @memberof EnergyCostRecordControllerApiEnergyCostAddRecordListExport
|
|
406
|
+
*/
|
|
407
|
+
readonly billCode?: string;
|
|
408
|
+
/**
|
|
409
|
+
*
|
|
410
|
+
* @type {string}
|
|
411
|
+
* @memberof EnergyCostRecordControllerApiEnergyCostAddRecordListExport
|
|
412
|
+
*/
|
|
413
|
+
readonly startTime?: string;
|
|
414
|
+
/**
|
|
415
|
+
*
|
|
416
|
+
* @type {string}
|
|
417
|
+
* @memberof EnergyCostRecordControllerApiEnergyCostAddRecordListExport
|
|
418
|
+
*/
|
|
419
|
+
readonly endTime?: string;
|
|
420
|
+
/**
|
|
421
|
+
*
|
|
422
|
+
* @type {Array<'ELECTRIC' | 'WATER'>}
|
|
423
|
+
* @memberof EnergyCostRecordControllerApiEnergyCostAddRecordListExport
|
|
424
|
+
*/
|
|
425
|
+
readonly energyTypes?: Array<EnergyCostAddRecordListExportEnergyTypesEnum>;
|
|
426
|
+
/**
|
|
427
|
+
*
|
|
428
|
+
* @type {Array<number>}
|
|
429
|
+
* @memberof EnergyCostRecordControllerApiEnergyCostAddRecordListExport
|
|
430
|
+
*/
|
|
431
|
+
readonly status?: Array<number>;
|
|
432
|
+
}
|
|
348
433
|
/**
|
|
349
434
|
* Request parameters for energyCostAddRecordNext operation in EnergyCostRecordControllerApi.
|
|
350
435
|
* @export
|
|
@@ -440,6 +525,15 @@ export declare class EnergyCostRecordControllerApi extends BaseAPI {
|
|
|
440
525
|
* @memberof EnergyCostRecordControllerApi
|
|
441
526
|
*/
|
|
442
527
|
energyCostAddRecordList(requestParameters?: EnergyCostRecordControllerApiEnergyCostAddRecordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultIPageEnergyCostRecordInfoVO, any, {}>>;
|
|
528
|
+
/**
|
|
529
|
+
*
|
|
530
|
+
* @summary 新增能源消耗-列表导出
|
|
531
|
+
* @param {EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest} requestParameters Request parameters.
|
|
532
|
+
* @param {*} [options] Override http request option.
|
|
533
|
+
* @throws {RequiredError}
|
|
534
|
+
* @memberof EnergyCostRecordControllerApi
|
|
535
|
+
*/
|
|
536
|
+
energyCostAddRecordListExport(requestParameters?: EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
443
537
|
/**
|
|
444
538
|
* 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
|
|
445
539
|
* @summary 计算能源消耗(不保存)
|
|
@@ -485,3 +579,11 @@ export declare const EnergyCostAddRecordListEnergyTypesEnum: {
|
|
|
485
579
|
readonly Water: "WATER";
|
|
486
580
|
};
|
|
487
581
|
export type EnergyCostAddRecordListEnergyTypesEnum = typeof EnergyCostAddRecordListEnergyTypesEnum[keyof typeof EnergyCostAddRecordListEnergyTypesEnum];
|
|
582
|
+
/**
|
|
583
|
+
* @export
|
|
584
|
+
*/
|
|
585
|
+
export declare const EnergyCostAddRecordListExportEnergyTypesEnum: {
|
|
586
|
+
readonly Electric: "ELECTRIC";
|
|
587
|
+
readonly Water: "WATER";
|
|
588
|
+
};
|
|
589
|
+
export type EnergyCostAddRecordListExportEnergyTypesEnum = typeof EnergyCostAddRecordListExportEnergyTypesEnum[keyof typeof EnergyCostAddRecordListExportEnergyTypesEnum];
|
|
@@ -195,6 +195,62 @@ export const EnergyCostRecordControllerApiAxiosParamCreator = function (configur
|
|
|
195
195
|
options: localVarRequestOptions,
|
|
196
196
|
};
|
|
197
197
|
}),
|
|
198
|
+
/**
|
|
199
|
+
*
|
|
200
|
+
* @summary 新增能源消耗-列表导出
|
|
201
|
+
* @param {number} [page]
|
|
202
|
+
* @param {number} [size]
|
|
203
|
+
* @param {string} [billCode]
|
|
204
|
+
* @param {string} [startTime]
|
|
205
|
+
* @param {string} [endTime]
|
|
206
|
+
* @param {Array<EnergyCostAddRecordListExportEnergyTypesEnum>} [energyTypes]
|
|
207
|
+
* @param {Array<number>} [status]
|
|
208
|
+
* @param {*} [options] Override http request option.
|
|
209
|
+
* @throws {RequiredError}
|
|
210
|
+
*/
|
|
211
|
+
energyCostAddRecordListExport: (page_1, size_1, billCode_1, startTime_1, endTime_1, energyTypes_1, status_1, ...args_1) => __awaiter(this, [page_1, size_1, billCode_1, startTime_1, endTime_1, energyTypes_1, status_1, ...args_1], void 0, function* (page, size, billCode, startTime, endTime, energyTypes, status, options = {}) {
|
|
212
|
+
const localVarPath = `/gizone/energy/cost/record/list/export`;
|
|
213
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
214
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
215
|
+
let baseOptions;
|
|
216
|
+
if (configuration) {
|
|
217
|
+
baseOptions = configuration.baseOptions;
|
|
218
|
+
}
|
|
219
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
220
|
+
const localVarHeaderParameter = {};
|
|
221
|
+
const localVarQueryParameter = {};
|
|
222
|
+
// authentication tokenScheme required
|
|
223
|
+
// http bearer authentication required
|
|
224
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
225
|
+
if (page !== undefined) {
|
|
226
|
+
localVarQueryParameter['page'] = page;
|
|
227
|
+
}
|
|
228
|
+
if (size !== undefined) {
|
|
229
|
+
localVarQueryParameter['size'] = size;
|
|
230
|
+
}
|
|
231
|
+
if (billCode !== undefined) {
|
|
232
|
+
localVarQueryParameter['billCode'] = billCode;
|
|
233
|
+
}
|
|
234
|
+
if (startTime !== undefined) {
|
|
235
|
+
localVarQueryParameter['startTime'] = startTime;
|
|
236
|
+
}
|
|
237
|
+
if (endTime !== undefined) {
|
|
238
|
+
localVarQueryParameter['endTime'] = endTime;
|
|
239
|
+
}
|
|
240
|
+
if (energyTypes) {
|
|
241
|
+
localVarQueryParameter['energyTypes'] = energyTypes;
|
|
242
|
+
}
|
|
243
|
+
if (status) {
|
|
244
|
+
localVarQueryParameter['status'] = status;
|
|
245
|
+
}
|
|
246
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
247
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
248
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
249
|
+
return {
|
|
250
|
+
url: toPathString(localVarUrlObj),
|
|
251
|
+
options: localVarRequestOptions,
|
|
252
|
+
};
|
|
253
|
+
}),
|
|
198
254
|
/**
|
|
199
255
|
* 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
|
|
200
256
|
* @summary 计算能源消耗(不保存)
|
|
@@ -407,6 +463,28 @@ export const EnergyCostRecordControllerApiFp = function (configuration) {
|
|
|
407
463
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
408
464
|
});
|
|
409
465
|
},
|
|
466
|
+
/**
|
|
467
|
+
*
|
|
468
|
+
* @summary 新增能源消耗-列表导出
|
|
469
|
+
* @param {number} [page]
|
|
470
|
+
* @param {number} [size]
|
|
471
|
+
* @param {string} [billCode]
|
|
472
|
+
* @param {string} [startTime]
|
|
473
|
+
* @param {string} [endTime]
|
|
474
|
+
* @param {Array<EnergyCostAddRecordListExportEnergyTypesEnum>} [energyTypes]
|
|
475
|
+
* @param {Array<number>} [status]
|
|
476
|
+
* @param {*} [options] Override http request option.
|
|
477
|
+
* @throws {RequiredError}
|
|
478
|
+
*/
|
|
479
|
+
energyCostAddRecordListExport(page, size, billCode, startTime, endTime, energyTypes, status, options) {
|
|
480
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
481
|
+
var _a, _b, _c;
|
|
482
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.energyCostAddRecordListExport(page, size, billCode, startTime, endTime, energyTypes, status, options);
|
|
483
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
484
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnergyCostRecordControllerApi.energyCostAddRecordListExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
485
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
486
|
+
});
|
|
487
|
+
},
|
|
410
488
|
/**
|
|
411
489
|
* 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
|
|
412
490
|
* @summary 计算能源消耗(不保存)
|
|
@@ -520,6 +598,16 @@ export const EnergyCostRecordControllerApiFactory = function (configuration, bas
|
|
|
520
598
|
energyCostAddRecordList(requestParameters = {}, options) {
|
|
521
599
|
return localVarFp.energyCostAddRecordList(requestParameters.page, requestParameters.size, requestParameters.billCode, requestParameters.startTime, requestParameters.endTime, requestParameters.energyTypes, requestParameters.status, options).then((request) => request(axios, basePath));
|
|
522
600
|
},
|
|
601
|
+
/**
|
|
602
|
+
*
|
|
603
|
+
* @summary 新增能源消耗-列表导出
|
|
604
|
+
* @param {EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest} requestParameters Request parameters.
|
|
605
|
+
* @param {*} [options] Override http request option.
|
|
606
|
+
* @throws {RequiredError}
|
|
607
|
+
*/
|
|
608
|
+
energyCostAddRecordListExport(requestParameters = {}, options) {
|
|
609
|
+
return localVarFp.energyCostAddRecordListExport(requestParameters.page, requestParameters.size, requestParameters.billCode, requestParameters.startTime, requestParameters.endTime, requestParameters.energyTypes, requestParameters.status, options).then((request) => request(axios, basePath));
|
|
610
|
+
},
|
|
523
611
|
/**
|
|
524
612
|
* 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
|
|
525
613
|
* @summary 计算能源消耗(不保存)
|
|
@@ -613,6 +701,17 @@ export class EnergyCostRecordControllerApi extends BaseAPI {
|
|
|
613
701
|
energyCostAddRecordList(requestParameters = {}, options) {
|
|
614
702
|
return EnergyCostRecordControllerApiFp(this.configuration).energyCostAddRecordList(requestParameters.page, requestParameters.size, requestParameters.billCode, requestParameters.startTime, requestParameters.endTime, requestParameters.energyTypes, requestParameters.status, options).then((request) => request(this.axios, this.basePath));
|
|
615
703
|
}
|
|
704
|
+
/**
|
|
705
|
+
*
|
|
706
|
+
* @summary 新增能源消耗-列表导出
|
|
707
|
+
* @param {EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest} requestParameters Request parameters.
|
|
708
|
+
* @param {*} [options] Override http request option.
|
|
709
|
+
* @throws {RequiredError}
|
|
710
|
+
* @memberof EnergyCostRecordControllerApi
|
|
711
|
+
*/
|
|
712
|
+
energyCostAddRecordListExport(requestParameters = {}, options) {
|
|
713
|
+
return EnergyCostRecordControllerApiFp(this.configuration).energyCostAddRecordListExport(requestParameters.page, requestParameters.size, requestParameters.billCode, requestParameters.startTime, requestParameters.endTime, requestParameters.energyTypes, requestParameters.status, options).then((request) => request(this.axios, this.basePath));
|
|
714
|
+
}
|
|
616
715
|
/**
|
|
617
716
|
* 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
|
|
618
717
|
* @summary 计算能源消耗(不保存)
|
|
@@ -665,3 +764,10 @@ export const EnergyCostAddRecordListEnergyTypesEnum = {
|
|
|
665
764
|
Electric: 'ELECTRIC',
|
|
666
765
|
Water: 'WATER'
|
|
667
766
|
};
|
|
767
|
+
/**
|
|
768
|
+
* @export
|
|
769
|
+
*/
|
|
770
|
+
export const EnergyCostAddRecordListExportEnergyTypesEnum = {
|
|
771
|
+
Electric: 'ELECTRIC',
|
|
772
|
+
Water: 'WATER'
|
|
773
|
+
};
|
|
@@ -30,16 +30,16 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
30
30
|
'current'?: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {Array<EnergyCostRecordInfoVO>}
|
|
34
34
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
35
35
|
*/
|
|
36
|
-
'
|
|
36
|
+
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {boolean}
|
|
40
40
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'searchCount'?: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
45
|
* @type {number}
|
|
@@ -30,16 +30,16 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
30
30
|
'current'?: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {Array<EnergyCostRecordInfoVO>}
|
|
34
34
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
35
35
|
*/
|
|
36
|
-
'
|
|
36
|
+
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {boolean}
|
|
40
40
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'searchCount'?: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
45
|
* @type {number}
|
|
@@ -37,16 +37,16 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
37
37
|
'current'?: number;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {Array<EnergyCostRecordInfoVO>}
|
|
41
41
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
42
42
|
*/
|
|
43
|
-
'
|
|
43
|
+
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @type {
|
|
46
|
+
* @type {boolean}
|
|
47
47
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'searchCount'?: boolean;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
52
|
* @type {number}
|