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

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 (47) hide show
  1. package/.openapi-generator/FILES +4 -0
  2. package/apis/energy-cost-analysis-controller-api.ts +449 -0
  3. package/apis/energy-cost-controller-api.ts +89 -0
  4. package/dist/apis/energy-cost-analysis-controller-api.d.ts +232 -0
  5. package/dist/apis/energy-cost-analysis-controller-api.js +350 -0
  6. package/dist/apis/energy-cost-controller-api.d.ts +47 -0
  7. package/dist/apis/energy-cost-controller-api.js +68 -0
  8. package/dist/esm/apis/energy-cost-analysis-controller-api.d.ts +232 -0
  9. package/dist/esm/apis/energy-cost-analysis-controller-api.js +350 -0
  10. package/dist/esm/apis/energy-cost-controller-api.d.ts +47 -0
  11. package/dist/esm/apis/energy-cost-controller-api.js +68 -0
  12. package/dist/esm/models/energy-cost-add-record-dto.d.ts +2 -2
  13. package/dist/esm/models/energy-cost-analysis-query-dto.d.ts +6 -0
  14. package/dist/esm/models/energy-cost-two-list-vo.d.ts +114 -0
  15. package/dist/esm/models/energy-cost-two-list-vo.js +14 -0
  16. package/dist/esm/models/index.d.ts +4 -0
  17. package/dist/esm/models/index.js +4 -0
  18. package/dist/esm/models/json-result-list-energy-cost-two-list-vo.d.ts +62 -0
  19. package/dist/esm/models/json-result-list-energy-cost-two-list-vo.js +14 -0
  20. package/dist/esm/models/json-result-two-energy-consumption-summar-vo.d.ts +62 -0
  21. package/dist/esm/models/json-result-two-energy-consumption-summar-vo.js +14 -0
  22. package/dist/esm/models/sys-user.d.ts +4 -4
  23. package/dist/esm/models/two-energy-consumption-summar-vo.d.ts +30 -0
  24. package/dist/esm/models/two-energy-consumption-summar-vo.js +14 -0
  25. package/dist/models/energy-cost-add-record-dto.d.ts +2 -2
  26. package/dist/models/energy-cost-analysis-query-dto.d.ts +6 -0
  27. package/dist/models/energy-cost-two-list-vo.d.ts +114 -0
  28. package/dist/models/energy-cost-two-list-vo.js +15 -0
  29. package/dist/models/index.d.ts +4 -0
  30. package/dist/models/index.js +4 -0
  31. package/dist/models/json-result-list-energy-cost-two-list-vo.d.ts +62 -0
  32. package/dist/models/json-result-list-energy-cost-two-list-vo.js +15 -0
  33. package/dist/models/json-result-two-energy-consumption-summar-vo.d.ts +62 -0
  34. package/dist/models/json-result-two-energy-consumption-summar-vo.js +15 -0
  35. package/dist/models/sys-user.d.ts +4 -4
  36. package/dist/models/two-energy-consumption-summar-vo.d.ts +30 -0
  37. package/dist/models/two-energy-consumption-summar-vo.js +15 -0
  38. package/models/energy-cost-add-record-dto.ts +2 -2
  39. package/models/energy-cost-analysis-query-dto.ts +6 -0
  40. package/models/energy-cost-two-list-vo.ts +120 -0
  41. package/models/index.ts +4 -0
  42. package/models/json-result-list-energy-cost-two-list-vo.ts +72 -0
  43. package/models/json-result-two-energy-consumption-summar-vo.ts +72 -0
  44. package/models/sys-user.ts +4 -4
  45. package/models/two-energy-consumption-summar-vo.ts +36 -0
  46. package/ossutil.log +1089 -1086
  47. package/package.json +1 -1
@@ -0,0 +1,114 @@
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
+ * 能源看板-二级面板-列表VO
14
+ * @export
15
+ * @interface EnergyCostTwoListVO
16
+ */
17
+ export interface EnergyCostTwoListVO {
18
+ /**
19
+ * 大区
20
+ * @type {string}
21
+ * @memberof EnergyCostTwoListVO
22
+ */
23
+ 'region'?: string;
24
+ /**
25
+ * 小微
26
+ * @type {string}
27
+ * @memberof EnergyCostTwoListVO
28
+ */
29
+ 'smallWe'?: string;
30
+ /**
31
+ * 中心
32
+ * @type {string}
33
+ * @memberof EnergyCostTwoListVO
34
+ */
35
+ 'center'?: string;
36
+ /**
37
+ * 园区
38
+ * @type {string}
39
+ * @memberof EnergyCostTwoListVO
40
+ */
41
+ 'parkName'?: string;
42
+ /**
43
+ * 园区ID
44
+ * @type {number}
45
+ * @memberof EnergyCostTwoListVO
46
+ */
47
+ 'parkId'?: number;
48
+ /**
49
+ * 账单月
50
+ * @type {number}
51
+ * @memberof EnergyCostTwoListVO
52
+ */
53
+ 'yearMonths'?: number;
54
+ /**
55
+ * 当期用量
56
+ * @type {number}
57
+ * @memberof EnergyCostTwoListVO
58
+ */
59
+ 'currentUsage'?: number;
60
+ /**
61
+ * 本期费用
62
+ * @type {number}
63
+ * @memberof EnergyCostTwoListVO
64
+ */
65
+ 'currentCost'?: number;
66
+ /**
67
+ * 上期费用
68
+ * @type {number}
69
+ * @memberof EnergyCostTwoListVO
70
+ */
71
+ 'lastPeriodCost'?: number;
72
+ /**
73
+ * 当期费用单价
74
+ * @type {number}
75
+ * @memberof EnergyCostTwoListVO
76
+ */
77
+ 'currentUnitPrice'?: number;
78
+ /**
79
+ * 本期单平单价
80
+ * @type {number}
81
+ * @memberof EnergyCostTwoListVO
82
+ */
83
+ 'currentPricePerSquareMeter'?: number;
84
+ /**
85
+ * 年平均单平单价
86
+ * @type {number}
87
+ * @memberof EnergyCostTwoListVO
88
+ */
89
+ 'yearAvgPricePerSquareMeter'?: number;
90
+ /**
91
+ * 去年同期单平单价
92
+ * @type {number}
93
+ * @memberof EnergyCostTwoListVO
94
+ */
95
+ 'lastYearSamePeriodPricePerSquareMeter'?: number;
96
+ /**
97
+ * 本期单耗
98
+ * @type {number}
99
+ * @memberof EnergyCostTwoListVO
100
+ */
101
+ 'currentCostPerSquareMeter'?: number;
102
+ /**
103
+ * 年平均单耗
104
+ * @type {number}
105
+ * @memberof EnergyCostTwoListVO
106
+ */
107
+ 'yearAvgCostPerSquareMeter'?: number;
108
+ /**
109
+ * 去年同期单耗
110
+ * @type {number}
111
+ * @memberof EnergyCostTwoListVO
112
+ */
113
+ 'lastYearSamePeriodCostPerSquareMeter'?: number;
114
+ }
@@ -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 {};
@@ -124,6 +124,7 @@ 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
126
  export * from './energy-cost-trend-vo';
127
+ export * from './energy-cost-two-list-vo';
127
128
  export * from './energy-cost-unit-price-analysis-vo';
128
129
  export * from './energy-cost-update-setting-dto';
129
130
  export * from './equipment';
@@ -252,6 +253,7 @@ export * from './json-result-list-energy-cost-analysis-list-vo';
252
253
  export * from './json-result-list-energy-cost-month-setting-list-summary-standards-vo';
253
254
  export * from './json-result-list-energy-cost-month-setting-list-vo';
254
255
  export * from './json-result-list-energy-cost-trend-vo';
256
+ export * from './json-result-list-energy-cost-two-list-vo';
255
257
  export * from './json-result-list-equipment-detail-dto';
256
258
  export * from './json-result-list-equipment-qr-code-dto';
257
259
  export * from './json-result-list-equipment-system-tree-dto';
@@ -324,6 +326,7 @@ export * from './json-result-switch-park-v2-dto';
324
326
  export * from './json-result-sys-dept';
325
327
  export * from './json-result-sys-user';
326
328
  export * from './json-result-sys-user-msg-dto';
329
+ export * from './json-result-two-energy-consumption-summar-vo';
327
330
  export * from './json-result-user-add-redis-list-vo';
328
331
  export * from './json-result-user-settings-entity';
329
332
  export * from './json-result-violation-work-order-details-dto';
@@ -493,6 +496,7 @@ export * from './system-user-msg-source-type-enum';
493
496
  export * from './system-user-msg-type-enum';
494
497
  export * from './table-data-info';
495
498
  export * from './third-party-system-enum';
499
+ export * from './two-energy-consumption-summar-vo';
496
500
  export * from './user-add-redis-list-vo';
497
501
  export * from './user-batch-import-upload-request';
498
502
  export * from './user-bind-body';
@@ -124,6 +124,7 @@ 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
126
  export * from './energy-cost-trend-vo';
127
+ export * from './energy-cost-two-list-vo';
127
128
  export * from './energy-cost-unit-price-analysis-vo';
128
129
  export * from './energy-cost-update-setting-dto';
129
130
  export * from './equipment';
@@ -252,6 +253,7 @@ export * from './json-result-list-energy-cost-analysis-list-vo';
252
253
  export * from './json-result-list-energy-cost-month-setting-list-summary-standards-vo';
253
254
  export * from './json-result-list-energy-cost-month-setting-list-vo';
254
255
  export * from './json-result-list-energy-cost-trend-vo';
256
+ export * from './json-result-list-energy-cost-two-list-vo';
255
257
  export * from './json-result-list-equipment-detail-dto';
256
258
  export * from './json-result-list-equipment-qr-code-dto';
257
259
  export * from './json-result-list-equipment-system-tree-dto';
@@ -324,6 +326,7 @@ export * from './json-result-switch-park-v2-dto';
324
326
  export * from './json-result-sys-dept';
325
327
  export * from './json-result-sys-user';
326
328
  export * from './json-result-sys-user-msg-dto';
329
+ export * from './json-result-two-energy-consumption-summar-vo';
327
330
  export * from './json-result-user-add-redis-list-vo';
328
331
  export * from './json-result-user-settings-entity';
329
332
  export * from './json-result-violation-work-order-details-dto';
@@ -493,6 +496,7 @@ export * from './system-user-msg-source-type-enum';
493
496
  export * from './system-user-msg-type-enum';
494
497
  export * from './table-data-info';
495
498
  export * from './third-party-system-enum';
499
+ export * from './two-energy-consumption-summar-vo';
496
500
  export * from './user-add-redis-list-vo';
497
501
  export * from './user-batch-import-upload-request';
498
502
  export * from './user-bind-body';
@@ -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 { EnergyCostTwoListVO } from './energy-cost-two-list-vo';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultListEnergyCostTwoListVO
18
+ */
19
+ export interface JsonResultListEnergyCostTwoListVO {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultListEnergyCostTwoListVO
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultListEnergyCostTwoListVO
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultListEnergyCostTwoListVO
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ * 返回数据,可以是任意类型的值
40
+ * @type {Array<EnergyCostTwoListVO>}
41
+ * @memberof JsonResultListEnergyCostTwoListVO
42
+ */
43
+ 'data'?: Array<EnergyCostTwoListVO> | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultListEnergyCostTwoListVO
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultListEnergyCostTwoListVO
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultListEnergyCostTwoListVO
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,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 { TwoEnergyConsumptionSummarVO } from './two-energy-consumption-summar-vo';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultTwoEnergyConsumptionSummarVO
18
+ */
19
+ export interface JsonResultTwoEnergyConsumptionSummarVO {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ *
40
+ * @type {TwoEnergyConsumptionSummarVO}
41
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
42
+ */
43
+ 'data'?: TwoEnergyConsumptionSummarVO | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
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 {};
@@ -377,14 +377,14 @@ export interface SysUser {
377
377
  'sourceUserId'?: string;
378
378
  /**
379
379
  *
380
- * @type {number}
380
+ * @type {string}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cuserId'?: number;
383
+ 'cid'?: string;
384
384
  /**
385
385
  *
386
- * @type {string}
386
+ * @type {number}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cid'?: string;
389
+ 'cuserId'?: number;
390
390
  }
@@ -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 TwoEnergyConsumptionSummarVO
16
+ */
17
+ export interface TwoEnergyConsumptionSummarVO {
18
+ /**
19
+ * 用量
20
+ * @type {number}
21
+ * @memberof TwoEnergyConsumptionSummarVO
22
+ */
23
+ 'parkUtilityUsage'?: number;
24
+ /**
25
+ * 费用
26
+ * @type {number}
27
+ * @memberof TwoEnergyConsumptionSummarVO
28
+ */
29
+ 'billCharges'?: 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,13 +82,13 @@ export interface EnergyCostAddRecordDTO {
82
82
  * @type {number}
83
83
  * @memberof EnergyCostAddRecordDTO
84
84
  */
85
- 'powerFactorSurcharge': number;
85
+ 'powerFactorSurcharge'?: number;
86
86
  /**
87
87
  * 调前电费
88
88
  * @type {number}
89
89
  * @memberof EnergyCostAddRecordDTO
90
90
  */
91
- 'billAmountBefore': number;
91
+ 'billAmountBefore'?: number;
92
92
  /**
93
93
  * 单价
94
94
  * @type {number}
@@ -75,6 +75,12 @@ export interface EnergyCostAnalysisQueryDTO {
75
75
  * @memberof EnergyCostAnalysisQueryDTO
76
76
  */
77
77
  'energyTypes': Array<EnergyCostAnalysisQueryDTOEnergyTypesEnum>;
78
+ /**
79
+ * 场景来源
80
+ * @type {Array<string>}
81
+ * @memberof EnergyCostAnalysisQueryDTO
82
+ */
83
+ 'billSource'?: Array<string>;
78
84
  }
79
85
  export declare const EnergyCostAnalysisQueryDTOEnergyTypesEnum: {
80
86
  readonly Electric: "ELECTRIC";
@@ -0,0 +1,114 @@
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
+ * 能源看板-二级面板-列表VO
14
+ * @export
15
+ * @interface EnergyCostTwoListVO
16
+ */
17
+ export interface EnergyCostTwoListVO {
18
+ /**
19
+ * 大区
20
+ * @type {string}
21
+ * @memberof EnergyCostTwoListVO
22
+ */
23
+ 'region'?: string;
24
+ /**
25
+ * 小微
26
+ * @type {string}
27
+ * @memberof EnergyCostTwoListVO
28
+ */
29
+ 'smallWe'?: string;
30
+ /**
31
+ * 中心
32
+ * @type {string}
33
+ * @memberof EnergyCostTwoListVO
34
+ */
35
+ 'center'?: string;
36
+ /**
37
+ * 园区
38
+ * @type {string}
39
+ * @memberof EnergyCostTwoListVO
40
+ */
41
+ 'parkName'?: string;
42
+ /**
43
+ * 园区ID
44
+ * @type {number}
45
+ * @memberof EnergyCostTwoListVO
46
+ */
47
+ 'parkId'?: number;
48
+ /**
49
+ * 账单月
50
+ * @type {number}
51
+ * @memberof EnergyCostTwoListVO
52
+ */
53
+ 'yearMonths'?: number;
54
+ /**
55
+ * 当期用量
56
+ * @type {number}
57
+ * @memberof EnergyCostTwoListVO
58
+ */
59
+ 'currentUsage'?: number;
60
+ /**
61
+ * 本期费用
62
+ * @type {number}
63
+ * @memberof EnergyCostTwoListVO
64
+ */
65
+ 'currentCost'?: number;
66
+ /**
67
+ * 上期费用
68
+ * @type {number}
69
+ * @memberof EnergyCostTwoListVO
70
+ */
71
+ 'lastPeriodCost'?: number;
72
+ /**
73
+ * 当期费用单价
74
+ * @type {number}
75
+ * @memberof EnergyCostTwoListVO
76
+ */
77
+ 'currentUnitPrice'?: number;
78
+ /**
79
+ * 本期单平单价
80
+ * @type {number}
81
+ * @memberof EnergyCostTwoListVO
82
+ */
83
+ 'currentPricePerSquareMeter'?: number;
84
+ /**
85
+ * 年平均单平单价
86
+ * @type {number}
87
+ * @memberof EnergyCostTwoListVO
88
+ */
89
+ 'yearAvgPricePerSquareMeter'?: number;
90
+ /**
91
+ * 去年同期单平单价
92
+ * @type {number}
93
+ * @memberof EnergyCostTwoListVO
94
+ */
95
+ 'lastYearSamePeriodPricePerSquareMeter'?: number;
96
+ /**
97
+ * 本期单耗
98
+ * @type {number}
99
+ * @memberof EnergyCostTwoListVO
100
+ */
101
+ 'currentCostPerSquareMeter'?: number;
102
+ /**
103
+ * 年平均单耗
104
+ * @type {number}
105
+ * @memberof EnergyCostTwoListVO
106
+ */
107
+ 'yearAvgCostPerSquareMeter'?: number;
108
+ /**
109
+ * 去年同期单耗
110
+ * @type {number}
111
+ * @memberof EnergyCostTwoListVO
112
+ */
113
+ 'lastYearSamePeriodCostPerSquareMeter'?: number;
114
+ }
@@ -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 });
@@ -124,6 +124,7 @@ 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
126
  export * from './energy-cost-trend-vo';
127
+ export * from './energy-cost-two-list-vo';
127
128
  export * from './energy-cost-unit-price-analysis-vo';
128
129
  export * from './energy-cost-update-setting-dto';
129
130
  export * from './equipment';
@@ -252,6 +253,7 @@ export * from './json-result-list-energy-cost-analysis-list-vo';
252
253
  export * from './json-result-list-energy-cost-month-setting-list-summary-standards-vo';
253
254
  export * from './json-result-list-energy-cost-month-setting-list-vo';
254
255
  export * from './json-result-list-energy-cost-trend-vo';
256
+ export * from './json-result-list-energy-cost-two-list-vo';
255
257
  export * from './json-result-list-equipment-detail-dto';
256
258
  export * from './json-result-list-equipment-qr-code-dto';
257
259
  export * from './json-result-list-equipment-system-tree-dto';
@@ -324,6 +326,7 @@ export * from './json-result-switch-park-v2-dto';
324
326
  export * from './json-result-sys-dept';
325
327
  export * from './json-result-sys-user';
326
328
  export * from './json-result-sys-user-msg-dto';
329
+ export * from './json-result-two-energy-consumption-summar-vo';
327
330
  export * from './json-result-user-add-redis-list-vo';
328
331
  export * from './json-result-user-settings-entity';
329
332
  export * from './json-result-violation-work-order-details-dto';
@@ -493,6 +496,7 @@ export * from './system-user-msg-source-type-enum';
493
496
  export * from './system-user-msg-type-enum';
494
497
  export * from './table-data-info';
495
498
  export * from './third-party-system-enum';
499
+ export * from './two-energy-consumption-summar-vo';
496
500
  export * from './user-add-redis-list-vo';
497
501
  export * from './user-batch-import-upload-request';
498
502
  export * from './user-bind-body';
@@ -140,6 +140,7 @@ __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
142
  __exportStar(require("./energy-cost-trend-vo"), exports);
143
+ __exportStar(require("./energy-cost-two-list-vo"), exports);
143
144
  __exportStar(require("./energy-cost-unit-price-analysis-vo"), exports);
144
145
  __exportStar(require("./energy-cost-update-setting-dto"), exports);
145
146
  __exportStar(require("./equipment"), exports);
@@ -268,6 +269,7 @@ __exportStar(require("./json-result-list-energy-cost-analysis-list-vo"), exports
268
269
  __exportStar(require("./json-result-list-energy-cost-month-setting-list-summary-standards-vo"), exports);
269
270
  __exportStar(require("./json-result-list-energy-cost-month-setting-list-vo"), exports);
270
271
  __exportStar(require("./json-result-list-energy-cost-trend-vo"), exports);
272
+ __exportStar(require("./json-result-list-energy-cost-two-list-vo"), exports);
271
273
  __exportStar(require("./json-result-list-equipment-detail-dto"), exports);
272
274
  __exportStar(require("./json-result-list-equipment-qr-code-dto"), exports);
273
275
  __exportStar(require("./json-result-list-equipment-system-tree-dto"), exports);
@@ -340,6 +342,7 @@ __exportStar(require("./json-result-switch-park-v2-dto"), exports);
340
342
  __exportStar(require("./json-result-sys-dept"), exports);
341
343
  __exportStar(require("./json-result-sys-user"), exports);
342
344
  __exportStar(require("./json-result-sys-user-msg-dto"), exports);
345
+ __exportStar(require("./json-result-two-energy-consumption-summar-vo"), exports);
343
346
  __exportStar(require("./json-result-user-add-redis-list-vo"), exports);
344
347
  __exportStar(require("./json-result-user-settings-entity"), exports);
345
348
  __exportStar(require("./json-result-violation-work-order-details-dto"), exports);
@@ -509,6 +512,7 @@ __exportStar(require("./system-user-msg-source-type-enum"), exports);
509
512
  __exportStar(require("./system-user-msg-type-enum"), exports);
510
513
  __exportStar(require("./table-data-info"), exports);
511
514
  __exportStar(require("./third-party-system-enum"), exports);
515
+ __exportStar(require("./two-energy-consumption-summar-vo"), exports);
512
516
  __exportStar(require("./user-add-redis-list-vo"), exports);
513
517
  __exportStar(require("./user-batch-import-upload-request"), exports);
514
518
  __exportStar(require("./user-bind-body"), exports);