@gizone/rrs-client 4.2.9-alpha.557 → 4.2.9-alpha.558

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 (37) hide show
  1. package/.openapi-generator/FILES +3 -0
  2. package/apis/energy-cost-analysis-controller-api.ts +91 -0
  3. package/dist/apis/energy-cost-analysis-controller-api.d.ts +47 -0
  4. package/dist/apis/energy-cost-analysis-controller-api.js +70 -0
  5. package/dist/esm/apis/energy-cost-analysis-controller-api.d.ts +47 -0
  6. package/dist/esm/apis/energy-cost-analysis-controller-api.js +70 -0
  7. package/dist/esm/models/energy-cost-analysis-list-vo.d.ts +0 -12
  8. package/dist/esm/models/energy-cost-analysis-query-dto.d.ts +1 -1
  9. package/dist/esm/models/energy-cost-trend-vo.d.ts +38 -0
  10. package/dist/esm/models/energy-cost-trend-vo.js +19 -0
  11. package/dist/esm/models/index.d.ts +3 -0
  12. package/dist/esm/models/index.js +3 -0
  13. package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
  14. package/dist/esm/models/json-result-list-energy-cost-trend-vo.d.ts +62 -0
  15. package/dist/esm/models/json-result-list-energy-cost-trend-vo.js +14 -0
  16. package/dist/esm/models/monthly-data-vo.d.ts +48 -0
  17. package/dist/esm/models/monthly-data-vo.js +14 -0
  18. package/dist/models/energy-cost-analysis-list-vo.d.ts +0 -12
  19. package/dist/models/energy-cost-analysis-query-dto.d.ts +1 -1
  20. package/dist/models/energy-cost-trend-vo.d.ts +38 -0
  21. package/dist/models/energy-cost-trend-vo.js +22 -0
  22. package/dist/models/index.d.ts +3 -0
  23. package/dist/models/index.js +3 -0
  24. package/dist/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
  25. package/dist/models/json-result-list-energy-cost-trend-vo.d.ts +62 -0
  26. package/dist/models/json-result-list-energy-cost-trend-vo.js +15 -0
  27. package/dist/models/monthly-data-vo.d.ts +48 -0
  28. package/dist/models/monthly-data-vo.js +15 -0
  29. package/models/energy-cost-analysis-list-vo.ts +0 -12
  30. package/models/energy-cost-analysis-query-dto.ts +1 -1
  31. package/models/energy-cost-trend-vo.ts +49 -0
  32. package/models/index.ts +3 -0
  33. package/models/ipage-energy-cost-record-info-vo.ts +7 -7
  34. package/models/json-result-list-energy-cost-trend-vo.ts +72 -0
  35. package/models/monthly-data-vo.ts +54 -0
  36. package/ossutil.log +1086 -1083
  37. package/package.json +1 -1
@@ -123,6 +123,7 @@ export * from './energy-cost-scenarios-info-vo';
123
123
  export * from './energy-cost-setting-delete-dto';
124
124
  export * from './energy-cost-setting-summy-add-dto';
125
125
  export * from './energy-cost-setting-summy-update-dto';
126
+ export * from './energy-cost-trend-vo';
126
127
  export * from './energy-cost-unit-price-analysis-vo';
127
128
  export * from './energy-cost-update-setting-dto';
128
129
  export * from './equipment';
@@ -250,6 +251,7 @@ export * from './json-result-list-dashboard-work-order-type-subcategory-group-st
250
251
  export * from './json-result-list-energy-cost-analysis-list-vo';
251
252
  export * from './json-result-list-energy-cost-month-setting-list-summary-standards-vo';
252
253
  export * from './json-result-list-energy-cost-month-setting-list-vo';
254
+ export * from './json-result-list-energy-cost-trend-vo';
253
255
  export * from './json-result-list-equipment-detail-dto';
254
256
  export * from './json-result-list-equipment-qr-code-dto';
255
257
  export * from './json-result-list-equipment-system-tree-dto';
@@ -342,6 +344,7 @@ export * from './monitoring-coverage-alert-info';
342
344
  export * from './monitoring-coverage-alert-process-vo';
343
345
  export * from './monitoring-coverage-alert-reason-enum';
344
346
  export * from './monitoring-coverage-alert-work-order-details-dto';
347
+ export * from './monthly-data-vo';
345
348
  export * from './network-monitor-repair-add-vo';
346
349
  export * from './network-monitor-repair-decision-vo';
347
350
  export * from './network-monitor-repair-details-dto';
@@ -30,29 +30,29 @@ export interface IPageEnergyCostRecordInfoVO {
30
30
  'current'?: number;
31
31
  /**
32
32
  *
33
- * @type {number}
33
+ * @type {Array<EnergyCostRecordInfoVO>}
34
34
  * @memberof IPageEnergyCostRecordInfoVO
35
35
  */
36
- 'pages'?: number;
36
+ 'records'?: Array<EnergyCostRecordInfoVO>;
37
37
  /**
38
38
  *
39
39
  * @type {boolean}
40
40
  * @memberof IPageEnergyCostRecordInfoVO
41
- * @deprecated
42
41
  */
43
- 'hitCount'?: boolean;
42
+ 'searchCount'?: boolean;
44
43
  /**
45
44
  *
46
- * @type {Array<EnergyCostRecordInfoVO>}
45
+ * @type {number}
47
46
  * @memberof IPageEnergyCostRecordInfoVO
48
47
  */
49
- 'records'?: Array<EnergyCostRecordInfoVO>;
48
+ 'pages'?: number;
50
49
  /**
51
50
  *
52
51
  * @type {boolean}
53
52
  * @memberof IPageEnergyCostRecordInfoVO
53
+ * @deprecated
54
54
  */
55
- 'searchCount'?: boolean;
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 { EnergyCostTrendVO } from './energy-cost-trend-vo';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultListEnergyCostTrendVO
18
+ */
19
+ export interface JsonResultListEnergyCostTrendVO {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultListEnergyCostTrendVO
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultListEnergyCostTrendVO
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultListEnergyCostTrendVO
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ * 返回数据,可以是任意类型的值
40
+ * @type {Array<EnergyCostTrendVO>}
41
+ * @memberof JsonResultListEnergyCostTrendVO
42
+ */
43
+ 'data'?: Array<EnergyCostTrendVO> | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultListEnergyCostTrendVO
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultListEnergyCostTrendVO
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultListEnergyCostTrendVO
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,48 @@
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 MonthlyDataVO
16
+ */
17
+ export interface MonthlyDataVO {
18
+ /**
19
+ * 月份
20
+ * @type {string}
21
+ * @memberof MonthlyDataVO
22
+ */
23
+ 'month'?: string;
24
+ /**
25
+ * 用量
26
+ * @type {number}
27
+ * @memberof MonthlyDataVO
28
+ */
29
+ 'consumption'?: number;
30
+ /**
31
+ * 费用
32
+ * @type {number}
33
+ * @memberof MonthlyDataVO
34
+ */
35
+ 'cost'?: number;
36
+ /**
37
+ * 单耗
38
+ * @type {number}
39
+ * @memberof MonthlyDataVO
40
+ */
41
+ 'perUnitConsumption'?: number;
42
+ /**
43
+ * 单平单价
44
+ * @type {number}
45
+ * @memberof MonthlyDataVO
46
+ */
47
+ 'perAreaPrice'?: number;
48
+ }
@@ -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 {};
@@ -21,18 +21,6 @@ export interface EnergyCostAnalysisListVO {
21
21
  * @memberof EnergyCostAnalysisListVO
22
22
  */
23
23
  'energyType'?: EnergyCostAnalysisListVOEnergyTypeEnum;
24
- /**
25
- * 账单开始日期
26
- * @type {string}
27
- * @memberof EnergyCostAnalysisListVO
28
- */
29
- 'billDateStart'?: string;
30
- /**
31
- * 账单结束日期
32
- * @type {string}
33
- * @memberof EnergyCostAnalysisListVO
34
- */
35
- 'billDateEnd'?: string;
36
24
  /**
37
25
  * 场景类型
38
26
  * @type {string}
@@ -74,7 +74,7 @@ export interface EnergyCostAnalysisQueryDTO {
74
74
  * @type {Array<string>}
75
75
  * @memberof EnergyCostAnalysisQueryDTO
76
76
  */
77
- 'energyTypes'?: Array<EnergyCostAnalysisQueryDTOEnergyTypesEnum>;
77
+ 'energyTypes': Array<EnergyCostAnalysisQueryDTOEnergyTypesEnum>;
78
78
  }
79
79
  export declare const EnergyCostAnalysisQueryDTOEnergyTypesEnum: {
80
80
  readonly Electric: "ELECTRIC";
@@ -0,0 +1,38 @@
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 { MonthlyDataVO } from './monthly-data-vo';
13
+ /**
14
+ * 能源成本用量趋势
15
+ * @export
16
+ * @interface EnergyCostTrendVO
17
+ */
18
+ export interface EnergyCostTrendVO {
19
+ /**
20
+ * 场景类型
21
+ * @type {string}
22
+ * @memberof EnergyCostTrendVO
23
+ */
24
+ 'scenario'?: EnergyCostTrendVOScenarioEnum;
25
+ /**
26
+ * 月份数据列表
27
+ * @type {Array<MonthlyDataVO>}
28
+ * @memberof EnergyCostTrendVO
29
+ */
30
+ 'monthlyData'?: Array<MonthlyDataVO>;
31
+ }
32
+ export declare const EnergyCostTrendVOScenarioEnum: {
33
+ readonly ColdStorage: "COLD_STORAGE";
34
+ readonly SmartWarehouse: "SMART_WAREHOUSE";
35
+ readonly LeasingTenant: "LEASING_TENANT";
36
+ readonly PrivateConventionalWarehouse: "PRIVATE_CONVENTIONAL_WAREHOUSE";
37
+ };
38
+ export type EnergyCostTrendVOScenarioEnum = typeof EnergyCostTrendVOScenarioEnum[keyof typeof EnergyCostTrendVOScenarioEnum];
@@ -0,0 +1,22 @@
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 });
16
+ exports.EnergyCostTrendVOScenarioEnum = void 0;
17
+ exports.EnergyCostTrendVOScenarioEnum = {
18
+ ColdStorage: 'COLD_STORAGE',
19
+ SmartWarehouse: 'SMART_WAREHOUSE',
20
+ LeasingTenant: 'LEASING_TENANT',
21
+ PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
22
+ };
@@ -123,6 +123,7 @@ export * from './energy-cost-scenarios-info-vo';
123
123
  export * from './energy-cost-setting-delete-dto';
124
124
  export * from './energy-cost-setting-summy-add-dto';
125
125
  export * from './energy-cost-setting-summy-update-dto';
126
+ export * from './energy-cost-trend-vo';
126
127
  export * from './energy-cost-unit-price-analysis-vo';
127
128
  export * from './energy-cost-update-setting-dto';
128
129
  export * from './equipment';
@@ -250,6 +251,7 @@ export * from './json-result-list-dashboard-work-order-type-subcategory-group-st
250
251
  export * from './json-result-list-energy-cost-analysis-list-vo';
251
252
  export * from './json-result-list-energy-cost-month-setting-list-summary-standards-vo';
252
253
  export * from './json-result-list-energy-cost-month-setting-list-vo';
254
+ export * from './json-result-list-energy-cost-trend-vo';
253
255
  export * from './json-result-list-equipment-detail-dto';
254
256
  export * from './json-result-list-equipment-qr-code-dto';
255
257
  export * from './json-result-list-equipment-system-tree-dto';
@@ -342,6 +344,7 @@ export * from './monitoring-coverage-alert-info';
342
344
  export * from './monitoring-coverage-alert-process-vo';
343
345
  export * from './monitoring-coverage-alert-reason-enum';
344
346
  export * from './monitoring-coverage-alert-work-order-details-dto';
347
+ export * from './monthly-data-vo';
345
348
  export * from './network-monitor-repair-add-vo';
346
349
  export * from './network-monitor-repair-decision-vo';
347
350
  export * from './network-monitor-repair-details-dto';
@@ -139,6 +139,7 @@ __exportStar(require("./energy-cost-scenarios-info-vo"), exports);
139
139
  __exportStar(require("./energy-cost-setting-delete-dto"), exports);
140
140
  __exportStar(require("./energy-cost-setting-summy-add-dto"), exports);
141
141
  __exportStar(require("./energy-cost-setting-summy-update-dto"), exports);
142
+ __exportStar(require("./energy-cost-trend-vo"), exports);
142
143
  __exportStar(require("./energy-cost-unit-price-analysis-vo"), exports);
143
144
  __exportStar(require("./energy-cost-update-setting-dto"), exports);
144
145
  __exportStar(require("./equipment"), exports);
@@ -266,6 +267,7 @@ __exportStar(require("./json-result-list-dashboard-work-order-type-subcategory-g
266
267
  __exportStar(require("./json-result-list-energy-cost-analysis-list-vo"), exports);
267
268
  __exportStar(require("./json-result-list-energy-cost-month-setting-list-summary-standards-vo"), exports);
268
269
  __exportStar(require("./json-result-list-energy-cost-month-setting-list-vo"), exports);
270
+ __exportStar(require("./json-result-list-energy-cost-trend-vo"), exports);
269
271
  __exportStar(require("./json-result-list-equipment-detail-dto"), exports);
270
272
  __exportStar(require("./json-result-list-equipment-qr-code-dto"), exports);
271
273
  __exportStar(require("./json-result-list-equipment-system-tree-dto"), exports);
@@ -358,6 +360,7 @@ __exportStar(require("./monitoring-coverage-alert-info"), exports);
358
360
  __exportStar(require("./monitoring-coverage-alert-process-vo"), exports);
359
361
  __exportStar(require("./monitoring-coverage-alert-reason-enum"), exports);
360
362
  __exportStar(require("./monitoring-coverage-alert-work-order-details-dto"), exports);
363
+ __exportStar(require("./monthly-data-vo"), exports);
361
364
  __exportStar(require("./network-monitor-repair-add-vo"), exports);
362
365
  __exportStar(require("./network-monitor-repair-decision-vo"), exports);
363
366
  __exportStar(require("./network-monitor-repair-details-dto"), exports);
@@ -30,29 +30,29 @@ export interface IPageEnergyCostRecordInfoVO {
30
30
  'current'?: number;
31
31
  /**
32
32
  *
33
- * @type {number}
33
+ * @type {Array<EnergyCostRecordInfoVO>}
34
34
  * @memberof IPageEnergyCostRecordInfoVO
35
35
  */
36
- 'pages'?: number;
36
+ 'records'?: Array<EnergyCostRecordInfoVO>;
37
37
  /**
38
38
  *
39
39
  * @type {boolean}
40
40
  * @memberof IPageEnergyCostRecordInfoVO
41
- * @deprecated
42
41
  */
43
- 'hitCount'?: boolean;
42
+ 'searchCount'?: boolean;
44
43
  /**
45
44
  *
46
- * @type {Array<EnergyCostRecordInfoVO>}
45
+ * @type {number}
47
46
  * @memberof IPageEnergyCostRecordInfoVO
48
47
  */
49
- 'records'?: Array<EnergyCostRecordInfoVO>;
48
+ 'pages'?: number;
50
49
  /**
51
50
  *
52
51
  * @type {boolean}
53
52
  * @memberof IPageEnergyCostRecordInfoVO
53
+ * @deprecated
54
54
  */
55
- 'searchCount'?: boolean;
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 { EnergyCostTrendVO } from './energy-cost-trend-vo';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultListEnergyCostTrendVO
18
+ */
19
+ export interface JsonResultListEnergyCostTrendVO {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultListEnergyCostTrendVO
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultListEnergyCostTrendVO
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultListEnergyCostTrendVO
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ * 返回数据,可以是任意类型的值
40
+ * @type {Array<EnergyCostTrendVO>}
41
+ * @memberof JsonResultListEnergyCostTrendVO
42
+ */
43
+ 'data'?: Array<EnergyCostTrendVO> | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultListEnergyCostTrendVO
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultListEnergyCostTrendVO
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultListEnergyCostTrendVO
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,48 @@
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 MonthlyDataVO
16
+ */
17
+ export interface MonthlyDataVO {
18
+ /**
19
+ * 月份
20
+ * @type {string}
21
+ * @memberof MonthlyDataVO
22
+ */
23
+ 'month'?: string;
24
+ /**
25
+ * 用量
26
+ * @type {number}
27
+ * @memberof MonthlyDataVO
28
+ */
29
+ 'consumption'?: number;
30
+ /**
31
+ * 费用
32
+ * @type {number}
33
+ * @memberof MonthlyDataVO
34
+ */
35
+ 'cost'?: number;
36
+ /**
37
+ * 单耗
38
+ * @type {number}
39
+ * @memberof MonthlyDataVO
40
+ */
41
+ 'perUnitConsumption'?: number;
42
+ /**
43
+ * 单平单价
44
+ * @type {number}
45
+ * @memberof MonthlyDataVO
46
+ */
47
+ 'perAreaPrice'?: number;
48
+ }
@@ -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 });
@@ -26,18 +26,6 @@ export interface EnergyCostAnalysisListVO {
26
26
  * @memberof EnergyCostAnalysisListVO
27
27
  */
28
28
  'energyType'?: EnergyCostAnalysisListVOEnergyTypeEnum;
29
- /**
30
- * 账单开始日期
31
- * @type {string}
32
- * @memberof EnergyCostAnalysisListVO
33
- */
34
- 'billDateStart'?: string;
35
- /**
36
- * 账单结束日期
37
- * @type {string}
38
- * @memberof EnergyCostAnalysisListVO
39
- */
40
- 'billDateEnd'?: string;
41
29
  /**
42
30
  * 场景类型
43
31
  * @type {string}
@@ -79,7 +79,7 @@ export interface EnergyCostAnalysisQueryDTO {
79
79
  * @type {Array<string>}
80
80
  * @memberof EnergyCostAnalysisQueryDTO
81
81
  */
82
- 'energyTypes'?: Array<EnergyCostAnalysisQueryDTOEnergyTypesEnum>;
82
+ 'energyTypes': Array<EnergyCostAnalysisQueryDTOEnergyTypesEnum>;
83
83
  }
84
84
 
85
85
  export const EnergyCostAnalysisQueryDTOEnergyTypesEnum = {
@@ -0,0 +1,49 @@
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 { MonthlyDataVO } from './monthly-data-vo';
19
+
20
+ /**
21
+ * 能源成本用量趋势
22
+ * @export
23
+ * @interface EnergyCostTrendVO
24
+ */
25
+ export interface EnergyCostTrendVO {
26
+ /**
27
+ * 场景类型
28
+ * @type {string}
29
+ * @memberof EnergyCostTrendVO
30
+ */
31
+ 'scenario'?: EnergyCostTrendVOScenarioEnum;
32
+ /**
33
+ * 月份数据列表
34
+ * @type {Array<MonthlyDataVO>}
35
+ * @memberof EnergyCostTrendVO
36
+ */
37
+ 'monthlyData'?: Array<MonthlyDataVO>;
38
+ }
39
+
40
+ export const EnergyCostTrendVOScenarioEnum = {
41
+ ColdStorage: 'COLD_STORAGE',
42
+ SmartWarehouse: 'SMART_WAREHOUSE',
43
+ LeasingTenant: 'LEASING_TENANT',
44
+ PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
45
+ } as const;
46
+
47
+ export type EnergyCostTrendVOScenarioEnum = typeof EnergyCostTrendVOScenarioEnum[keyof typeof EnergyCostTrendVOScenarioEnum];
48
+
49
+
package/models/index.ts CHANGED
@@ -123,6 +123,7 @@ export * from './energy-cost-scenarios-info-vo';
123
123
  export * from './energy-cost-setting-delete-dto';
124
124
  export * from './energy-cost-setting-summy-add-dto';
125
125
  export * from './energy-cost-setting-summy-update-dto';
126
+ export * from './energy-cost-trend-vo';
126
127
  export * from './energy-cost-unit-price-analysis-vo';
127
128
  export * from './energy-cost-update-setting-dto';
128
129
  export * from './equipment';
@@ -250,6 +251,7 @@ export * from './json-result-list-dashboard-work-order-type-subcategory-group-st
250
251
  export * from './json-result-list-energy-cost-analysis-list-vo';
251
252
  export * from './json-result-list-energy-cost-month-setting-list-summary-standards-vo';
252
253
  export * from './json-result-list-energy-cost-month-setting-list-vo';
254
+ export * from './json-result-list-energy-cost-trend-vo';
253
255
  export * from './json-result-list-equipment-detail-dto';
254
256
  export * from './json-result-list-equipment-qr-code-dto';
255
257
  export * from './json-result-list-equipment-system-tree-dto';
@@ -342,6 +344,7 @@ export * from './monitoring-coverage-alert-info';
342
344
  export * from './monitoring-coverage-alert-process-vo';
343
345
  export * from './monitoring-coverage-alert-reason-enum';
344
346
  export * from './monitoring-coverage-alert-work-order-details-dto';
347
+ export * from './monthly-data-vo';
345
348
  export * from './network-monitor-repair-add-vo';
346
349
  export * from './network-monitor-repair-decision-vo';
347
350
  export * from './network-monitor-repair-details-dto';
@@ -37,29 +37,29 @@ export interface IPageEnergyCostRecordInfoVO {
37
37
  'current'?: number;
38
38
  /**
39
39
  *
40
- * @type {number}
40
+ * @type {Array<EnergyCostRecordInfoVO>}
41
41
  * @memberof IPageEnergyCostRecordInfoVO
42
42
  */
43
- 'pages'?: number;
43
+ 'records'?: Array<EnergyCostRecordInfoVO>;
44
44
  /**
45
45
  *
46
46
  * @type {boolean}
47
47
  * @memberof IPageEnergyCostRecordInfoVO
48
- * @deprecated
49
48
  */
50
- 'hitCount'?: boolean;
49
+ 'searchCount'?: boolean;
51
50
  /**
52
51
  *
53
- * @type {Array<EnergyCostRecordInfoVO>}
52
+ * @type {number}
54
53
  * @memberof IPageEnergyCostRecordInfoVO
55
54
  */
56
- 'records'?: Array<EnergyCostRecordInfoVO>;
55
+ 'pages'?: number;
57
56
  /**
58
57
  *
59
58
  * @type {boolean}
60
59
  * @memberof IPageEnergyCostRecordInfoVO
60
+ * @deprecated
61
61
  */
62
- 'searchCount'?: boolean;
62
+ 'hitCount'?: boolean;
63
63
  /**
64
64
  *
65
65
  * @type {number}