@gizone/rrs-client 4.2.9-alpha.540 → 4.2.9-alpha.542
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/.openapi-generator/FILES +4 -0
- package/apis/energy-cost-controller-api.ts +99 -8
- package/dist/apis/energy-cost-controller-api.d.ts +55 -8
- package/dist/apis/energy-cost-controller-api.js +78 -8
- package/dist/esm/apis/energy-cost-controller-api.d.ts +55 -8
- package/dist/esm/apis/energy-cost-controller-api.js +78 -8
- package/dist/esm/models/energy-cost-add-record-dto.d.ts +7 -0
- package/dist/esm/models/energy-cost-add-setting-dto.d.ts +4 -39
- package/dist/esm/models/energy-cost-add-setting-dto.js +1 -10
- package/dist/esm/models/energy-cost-add-setting-dtopark-setting-item.d.ts +43 -0
- package/dist/esm/models/energy-cost-add-setting-dtopark-setting-item.js +19 -0
- package/dist/esm/models/energy-cost-add-setting-dtopark-setting.d.ts +42 -0
- package/dist/esm/models/energy-cost-add-setting-dtopark-setting.js +17 -0
- package/dist/esm/models/energy-cost-setting-delete-dto.d.ts +41 -0
- package/dist/esm/models/energy-cost-setting-delete-dto.js +17 -0
- package/dist/esm/models/energy-cost-update-setting-dto.d.ts +1 -1
- package/dist/esm/models/index.d.ts +4 -0
- package/dist/esm/models/index.js +4 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +5 -5
- package/dist/esm/models/item.d.ts +4 -4
- package/dist/esm/models/pricing-item.d.ts +50 -0
- package/dist/esm/models/pricing-item.js +20 -0
- package/dist/models/energy-cost-add-record-dto.d.ts +7 -0
- package/dist/models/energy-cost-add-setting-dto.d.ts +4 -39
- package/dist/models/energy-cost-add-setting-dto.js +0 -11
- package/dist/models/energy-cost-add-setting-dtopark-setting-item.d.ts +43 -0
- package/dist/models/energy-cost-add-setting-dtopark-setting-item.js +22 -0
- package/dist/models/energy-cost-add-setting-dtopark-setting.d.ts +42 -0
- package/dist/models/energy-cost-add-setting-dtopark-setting.js +20 -0
- package/dist/models/energy-cost-setting-delete-dto.d.ts +41 -0
- package/dist/models/energy-cost-setting-delete-dto.js +20 -0
- package/dist/models/energy-cost-update-setting-dto.d.ts +1 -1
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +5 -5
- package/dist/models/item.d.ts +4 -4
- package/dist/models/pricing-item.d.ts +50 -0
- package/dist/models/pricing-item.js +23 -0
- package/models/energy-cost-add-record-dto.ts +9 -0
- package/models/energy-cost-add-setting-dto.ts +6 -43
- package/models/energy-cost-add-setting-dtopark-setting-item.ts +52 -0
- package/models/energy-cost-add-setting-dtopark-setting.ts +53 -0
- package/models/energy-cost-setting-delete-dto.ts +50 -0
- package/models/energy-cost-update-setting-dto.ts +1 -1
- package/models/index.ts +4 -0
- package/models/ipage-energy-cost-record-info-vo.ts +5 -5
- package/models/item.ts +4 -4
- package/models/pricing-item.ts +59 -0
- package/ossutil.log +1059 -1056
- package/package.json +1 -1
|
@@ -36,17 +36,17 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
36
36
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {number}
|
|
40
40
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
|
-
* @deprecated
|
|
42
41
|
*/
|
|
43
|
-
'
|
|
42
|
+
'pages'?: number;
|
|
44
43
|
/**
|
|
45
44
|
*
|
|
46
|
-
* @type {
|
|
45
|
+
* @type {boolean}
|
|
47
46
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
|
+
* @deprecated
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'hitCount'?: boolean;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
52
|
* @type {boolean}
|
|
@@ -20,25 +20,25 @@ export interface Item {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof Item
|
|
22
22
|
*/
|
|
23
|
-
'scenario'
|
|
23
|
+
'scenario'?: ItemScenarioEnum;
|
|
24
24
|
/**
|
|
25
25
|
* 面积
|
|
26
26
|
* @type {number}
|
|
27
27
|
* @memberof Item
|
|
28
28
|
*/
|
|
29
|
-
'totalArea'
|
|
29
|
+
'totalArea'?: number;
|
|
30
30
|
/**
|
|
31
31
|
* 用量
|
|
32
32
|
* @type {number}
|
|
33
33
|
* @memberof Item
|
|
34
34
|
*/
|
|
35
|
-
'consumption'
|
|
35
|
+
'consumption'?: number;
|
|
36
36
|
/**
|
|
37
37
|
* 费用
|
|
38
38
|
* @type {number}
|
|
39
39
|
* @memberof Item
|
|
40
40
|
*/
|
|
41
|
-
'cost'
|
|
41
|
+
'cost'?: number;
|
|
42
42
|
/**
|
|
43
43
|
* 超标原因
|
|
44
44
|
* @type {string}
|
|
@@ -0,0 +1,50 @@
|
|
|
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 PricingItem
|
|
16
|
+
*/
|
|
17
|
+
export interface PricingItem {
|
|
18
|
+
/**
|
|
19
|
+
* 能源类型
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PricingItem
|
|
22
|
+
*/
|
|
23
|
+
'rateType'?: PricingItemRateTypeEnum;
|
|
24
|
+
/**
|
|
25
|
+
* 用量
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof PricingItem
|
|
28
|
+
*/
|
|
29
|
+
'consumption'?: number;
|
|
30
|
+
/**
|
|
31
|
+
* 费用
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof PricingItem
|
|
34
|
+
*/
|
|
35
|
+
'cost'?: number;
|
|
36
|
+
/**
|
|
37
|
+
* 单价
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof PricingItem
|
|
40
|
+
*/
|
|
41
|
+
'unitPrice'?: number;
|
|
42
|
+
}
|
|
43
|
+
export declare const PricingItemRateTypeEnum: {
|
|
44
|
+
readonly Peak: "PEAK";
|
|
45
|
+
readonly HighPeak: "HIGH_PEAK";
|
|
46
|
+
readonly Flat: "FLAT";
|
|
47
|
+
readonly Valley: "VALLEY";
|
|
48
|
+
readonly DeepValley: "DEEP_VALLEY";
|
|
49
|
+
};
|
|
50
|
+
export type PricingItemRateTypeEnum = typeof PricingItemRateTypeEnum[keyof typeof PricingItemRateTypeEnum];
|
|
@@ -0,0 +1,20 @@
|
|
|
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 const PricingItemRateTypeEnum = {
|
|
15
|
+
Peak: 'PEAK',
|
|
16
|
+
HighPeak: 'HIGH_PEAK',
|
|
17
|
+
Flat: 'FLAT',
|
|
18
|
+
Valley: 'VALLEY',
|
|
19
|
+
DeepValley: 'DEEP_VALLEY'
|
|
20
|
+
};
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { Item } from './item';
|
|
13
|
+
import type { PricingItem } from './pricing-item';
|
|
13
14
|
/**
|
|
14
15
|
* 新增能源消耗记录-新增-入参
|
|
15
16
|
* @export
|
|
@@ -130,6 +131,12 @@ export interface EnergyCostAddRecordDTO {
|
|
|
130
131
|
* @memberof EnergyCostAddRecordDTO
|
|
131
132
|
*/
|
|
132
133
|
'scenarios'?: Array<Item>;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {Array<PricingItem>}
|
|
137
|
+
* @memberof EnergyCostAddRecordDTO
|
|
138
|
+
*/
|
|
139
|
+
'pricingItem'?: Array<PricingItem>;
|
|
133
140
|
}
|
|
134
141
|
export declare const EnergyCostAddRecordDTOEnergyTypeEnum: {
|
|
135
142
|
readonly Electric: "ELECTRIC";
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { EnergyCostAddSettingDTOParkSetting } from './energy-cost-add-setting-dtopark-setting';
|
|
12
13
|
/**
|
|
13
14
|
* 新增能源费用管理设置-新增-入参
|
|
14
15
|
* @export
|
|
@@ -16,45 +17,9 @@
|
|
|
16
17
|
*/
|
|
17
18
|
export interface EnergyCostAddSettingDTO {
|
|
18
19
|
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {
|
|
20
|
+
* list
|
|
21
|
+
* @type {Array<EnergyCostAddSettingDTOParkSetting>}
|
|
21
22
|
* @memberof EnergyCostAddSettingDTO
|
|
22
23
|
*/
|
|
23
|
-
'
|
|
24
|
-
/**
|
|
25
|
-
* 能源类型
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof EnergyCostAddSettingDTO
|
|
28
|
-
*/
|
|
29
|
-
'energyType': EnergyCostAddSettingDTOEnergyTypeEnum;
|
|
30
|
-
/**
|
|
31
|
-
* 标准值
|
|
32
|
-
* @type {number}
|
|
33
|
-
* @memberof EnergyCostAddSettingDTO
|
|
34
|
-
*/
|
|
35
|
-
'standardValue': number;
|
|
36
|
-
/**
|
|
37
|
-
* 使用场景
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof EnergyCostAddSettingDTO
|
|
40
|
-
*/
|
|
41
|
-
'usageScenariosType'?: EnergyCostAddSettingDTOUsageScenariosTypeEnum;
|
|
42
|
-
/**
|
|
43
|
-
* 日期-年月
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof EnergyCostAddSettingDTO
|
|
46
|
-
*/
|
|
47
|
-
'yearMonths': string;
|
|
24
|
+
'energyCostAddSettingDTOParkSettingList': Array<EnergyCostAddSettingDTOParkSetting>;
|
|
48
25
|
}
|
|
49
|
-
export declare const EnergyCostAddSettingDTOEnergyTypeEnum: {
|
|
50
|
-
readonly Electric: "ELECTRIC";
|
|
51
|
-
readonly Water: "WATER";
|
|
52
|
-
};
|
|
53
|
-
export type EnergyCostAddSettingDTOEnergyTypeEnum = typeof EnergyCostAddSettingDTOEnergyTypeEnum[keyof typeof EnergyCostAddSettingDTOEnergyTypeEnum];
|
|
54
|
-
export declare const EnergyCostAddSettingDTOUsageScenariosTypeEnum: {
|
|
55
|
-
readonly ColdStorage: "COLD_STORAGE";
|
|
56
|
-
readonly SmartWarehouse: "SMART_WAREHOUSE";
|
|
57
|
-
readonly LeasingTenant: "LEASING_TENANT";
|
|
58
|
-
readonly PrivateConventionalWarehouse: "PRIVATE_CONVENTIONAL_WAREHOUSE";
|
|
59
|
-
};
|
|
60
|
-
export type EnergyCostAddSettingDTOUsageScenariosTypeEnum = typeof EnergyCostAddSettingDTOUsageScenariosTypeEnum[keyof typeof EnergyCostAddSettingDTOUsageScenariosTypeEnum];
|
|
@@ -13,14 +13,3 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.EnergyCostAddSettingDTOUsageScenariosTypeEnum = exports.EnergyCostAddSettingDTOEnergyTypeEnum = void 0;
|
|
17
|
-
exports.EnergyCostAddSettingDTOEnergyTypeEnum = {
|
|
18
|
-
Electric: 'ELECTRIC',
|
|
19
|
-
Water: 'WATER'
|
|
20
|
-
};
|
|
21
|
-
exports.EnergyCostAddSettingDTOUsageScenariosTypeEnum = {
|
|
22
|
-
ColdStorage: 'COLD_STORAGE',
|
|
23
|
-
SmartWarehouse: 'SMART_WAREHOUSE',
|
|
24
|
-
LeasingTenant: 'LEASING_TENANT',
|
|
25
|
-
PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
|
|
26
|
-
};
|
|
@@ -0,0 +1,43 @@
|
|
|
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 EnergyCostAddSettingDTOParkSettingItem
|
|
16
|
+
*/
|
|
17
|
+
export interface EnergyCostAddSettingDTOParkSettingItem {
|
|
18
|
+
/**
|
|
19
|
+
* 使用场景
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof EnergyCostAddSettingDTOParkSettingItem
|
|
22
|
+
*/
|
|
23
|
+
'usageScenariosType'?: EnergyCostAddSettingDTOParkSettingItemUsageScenariosTypeEnum;
|
|
24
|
+
/**
|
|
25
|
+
* 标准值
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof EnergyCostAddSettingDTOParkSettingItem
|
|
28
|
+
*/
|
|
29
|
+
'standardValue': number;
|
|
30
|
+
/**
|
|
31
|
+
* 日期-年月
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof EnergyCostAddSettingDTOParkSettingItem
|
|
34
|
+
*/
|
|
35
|
+
'yearMonths': string;
|
|
36
|
+
}
|
|
37
|
+
export declare const EnergyCostAddSettingDTOParkSettingItemUsageScenariosTypeEnum: {
|
|
38
|
+
readonly ColdStorage: "COLD_STORAGE";
|
|
39
|
+
readonly SmartWarehouse: "SMART_WAREHOUSE";
|
|
40
|
+
readonly LeasingTenant: "LEASING_TENANT";
|
|
41
|
+
readonly PrivateConventionalWarehouse: "PRIVATE_CONVENTIONAL_WAREHOUSE";
|
|
42
|
+
};
|
|
43
|
+
export type EnergyCostAddSettingDTOParkSettingItemUsageScenariosTypeEnum = typeof EnergyCostAddSettingDTOParkSettingItemUsageScenariosTypeEnum[keyof typeof EnergyCostAddSettingDTOParkSettingItemUsageScenariosTypeEnum];
|
|
@@ -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.EnergyCostAddSettingDTOParkSettingItemUsageScenariosTypeEnum = void 0;
|
|
17
|
+
exports.EnergyCostAddSettingDTOParkSettingItemUsageScenariosTypeEnum = {
|
|
18
|
+
ColdStorage: 'COLD_STORAGE',
|
|
19
|
+
SmartWarehouse: 'SMART_WAREHOUSE',
|
|
20
|
+
LeasingTenant: 'LEASING_TENANT',
|
|
21
|
+
PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
|
|
22
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
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 { EnergyCostAddSettingDTOParkSettingItem } from './energy-cost-add-setting-dtopark-setting-item';
|
|
13
|
+
/**
|
|
14
|
+
* list
|
|
15
|
+
* @export
|
|
16
|
+
* @interface EnergyCostAddSettingDTOParkSetting
|
|
17
|
+
*/
|
|
18
|
+
export interface EnergyCostAddSettingDTOParkSetting {
|
|
19
|
+
/**
|
|
20
|
+
* 园区id
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof EnergyCostAddSettingDTOParkSetting
|
|
23
|
+
*/
|
|
24
|
+
'parkId': number;
|
|
25
|
+
/**
|
|
26
|
+
* 能源类型
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof EnergyCostAddSettingDTOParkSetting
|
|
29
|
+
*/
|
|
30
|
+
'energyType': EnergyCostAddSettingDTOParkSettingEnergyTypeEnum;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<EnergyCostAddSettingDTOParkSettingItem>}
|
|
34
|
+
* @memberof EnergyCostAddSettingDTOParkSetting
|
|
35
|
+
*/
|
|
36
|
+
'list'?: Array<EnergyCostAddSettingDTOParkSettingItem>;
|
|
37
|
+
}
|
|
38
|
+
export declare const EnergyCostAddSettingDTOParkSettingEnergyTypeEnum: {
|
|
39
|
+
readonly Electric: "ELECTRIC";
|
|
40
|
+
readonly Water: "WATER";
|
|
41
|
+
};
|
|
42
|
+
export type EnergyCostAddSettingDTOParkSettingEnergyTypeEnum = typeof EnergyCostAddSettingDTOParkSettingEnergyTypeEnum[keyof typeof EnergyCostAddSettingDTOParkSettingEnergyTypeEnum];
|
|
@@ -0,0 +1,20 @@
|
|
|
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.EnergyCostAddSettingDTOParkSettingEnergyTypeEnum = void 0;
|
|
17
|
+
exports.EnergyCostAddSettingDTOParkSettingEnergyTypeEnum = {
|
|
18
|
+
Electric: 'ELECTRIC',
|
|
19
|
+
Water: 'WATER'
|
|
20
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
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 EnergyCostSettingDeleteDTO
|
|
16
|
+
*/
|
|
17
|
+
export interface EnergyCostSettingDeleteDTO {
|
|
18
|
+
/**
|
|
19
|
+
* 园区id
|
|
20
|
+
* @type {Array<number>}
|
|
21
|
+
* @memberof EnergyCostSettingDeleteDTO
|
|
22
|
+
*/
|
|
23
|
+
'parkIds': Array<number>;
|
|
24
|
+
/**
|
|
25
|
+
* 能源类型
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof EnergyCostSettingDeleteDTO
|
|
28
|
+
*/
|
|
29
|
+
'energyType': EnergyCostSettingDeleteDTOEnergyTypeEnum;
|
|
30
|
+
/**
|
|
31
|
+
* 日期-年月
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof EnergyCostSettingDeleteDTO
|
|
34
|
+
*/
|
|
35
|
+
'yearMonths': string;
|
|
36
|
+
}
|
|
37
|
+
export declare const EnergyCostSettingDeleteDTOEnergyTypeEnum: {
|
|
38
|
+
readonly Electric: "ELECTRIC";
|
|
39
|
+
readonly Water: "WATER";
|
|
40
|
+
};
|
|
41
|
+
export type EnergyCostSettingDeleteDTOEnergyTypeEnum = typeof EnergyCostSettingDeleteDTOEnergyTypeEnum[keyof typeof EnergyCostSettingDeleteDTOEnergyTypeEnum];
|
|
@@ -0,0 +1,20 @@
|
|
|
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.EnergyCostSettingDeleteDTOEnergyTypeEnum = void 0;
|
|
17
|
+
exports.EnergyCostSettingDeleteDTOEnergyTypeEnum = {
|
|
18
|
+
Electric: 'ELECTRIC',
|
|
19
|
+
Water: 'WATER'
|
|
20
|
+
};
|
package/dist/models/index.d.ts
CHANGED
|
@@ -106,10 +106,13 @@ export * from './disaster-warning-standard-import-dto';
|
|
|
106
106
|
export * from './emission-standard-enum';
|
|
107
107
|
export * from './energy-cost-add-record-dto';
|
|
108
108
|
export * from './energy-cost-add-setting-dto';
|
|
109
|
+
export * from './energy-cost-add-setting-dtopark-setting';
|
|
110
|
+
export * from './energy-cost-add-setting-dtopark-setting-item';
|
|
109
111
|
export * from './energy-cost-month-setting-list-summary-standards-vo';
|
|
110
112
|
export * from './energy-cost-month-setting-list-vo';
|
|
111
113
|
export * from './energy-cost-record-info-vo';
|
|
112
114
|
export * from './energy-cost-scenarios-info-vo';
|
|
115
|
+
export * from './energy-cost-setting-delete-dto';
|
|
113
116
|
export * from './energy-cost-setting-summy-add-dto';
|
|
114
117
|
export * from './energy-cost-setting-summy-update-dto';
|
|
115
118
|
export * from './energy-cost-update-setting-dto';
|
|
@@ -379,6 +382,7 @@ export * from './plan-level-enum';
|
|
|
379
382
|
export * from './plan-search-dto';
|
|
380
383
|
export * from './plan-search-dtoplan-item';
|
|
381
384
|
export * from './plan-to-state-vo';
|
|
385
|
+
export * from './pricing-item';
|
|
382
386
|
export * from './privacy-add-vo';
|
|
383
387
|
export * from './privacy-update-state-dto';
|
|
384
388
|
export * from './process-network-monitor-repair-vo';
|
package/dist/models/index.js
CHANGED
|
@@ -122,10 +122,13 @@ __exportStar(require("./disaster-warning-standard-import-dto"), exports);
|
|
|
122
122
|
__exportStar(require("./emission-standard-enum"), exports);
|
|
123
123
|
__exportStar(require("./energy-cost-add-record-dto"), exports);
|
|
124
124
|
__exportStar(require("./energy-cost-add-setting-dto"), exports);
|
|
125
|
+
__exportStar(require("./energy-cost-add-setting-dtopark-setting"), exports);
|
|
126
|
+
__exportStar(require("./energy-cost-add-setting-dtopark-setting-item"), exports);
|
|
125
127
|
__exportStar(require("./energy-cost-month-setting-list-summary-standards-vo"), exports);
|
|
126
128
|
__exportStar(require("./energy-cost-month-setting-list-vo"), exports);
|
|
127
129
|
__exportStar(require("./energy-cost-record-info-vo"), exports);
|
|
128
130
|
__exportStar(require("./energy-cost-scenarios-info-vo"), exports);
|
|
131
|
+
__exportStar(require("./energy-cost-setting-delete-dto"), exports);
|
|
129
132
|
__exportStar(require("./energy-cost-setting-summy-add-dto"), exports);
|
|
130
133
|
__exportStar(require("./energy-cost-setting-summy-update-dto"), exports);
|
|
131
134
|
__exportStar(require("./energy-cost-update-setting-dto"), exports);
|
|
@@ -395,6 +398,7 @@ __exportStar(require("./plan-level-enum"), exports);
|
|
|
395
398
|
__exportStar(require("./plan-search-dto"), exports);
|
|
396
399
|
__exportStar(require("./plan-search-dtoplan-item"), exports);
|
|
397
400
|
__exportStar(require("./plan-to-state-vo"), exports);
|
|
401
|
+
__exportStar(require("./pricing-item"), exports);
|
|
398
402
|
__exportStar(require("./privacy-add-vo"), exports);
|
|
399
403
|
__exportStar(require("./privacy-update-state-dto"), exports);
|
|
400
404
|
__exportStar(require("./process-network-monitor-repair-vo"), exports);
|
|
@@ -36,17 +36,17 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
36
36
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {number}
|
|
40
40
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
|
-
* @deprecated
|
|
42
41
|
*/
|
|
43
|
-
'
|
|
42
|
+
'pages'?: number;
|
|
44
43
|
/**
|
|
45
44
|
*
|
|
46
|
-
* @type {
|
|
45
|
+
* @type {boolean}
|
|
47
46
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
|
+
* @deprecated
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'hitCount'?: boolean;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
52
|
* @type {boolean}
|
package/dist/models/item.d.ts
CHANGED
|
@@ -20,25 +20,25 @@ export interface Item {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof Item
|
|
22
22
|
*/
|
|
23
|
-
'scenario'
|
|
23
|
+
'scenario'?: ItemScenarioEnum;
|
|
24
24
|
/**
|
|
25
25
|
* 面积
|
|
26
26
|
* @type {number}
|
|
27
27
|
* @memberof Item
|
|
28
28
|
*/
|
|
29
|
-
'totalArea'
|
|
29
|
+
'totalArea'?: number;
|
|
30
30
|
/**
|
|
31
31
|
* 用量
|
|
32
32
|
* @type {number}
|
|
33
33
|
* @memberof Item
|
|
34
34
|
*/
|
|
35
|
-
'consumption'
|
|
35
|
+
'consumption'?: number;
|
|
36
36
|
/**
|
|
37
37
|
* 费用
|
|
38
38
|
* @type {number}
|
|
39
39
|
* @memberof Item
|
|
40
40
|
*/
|
|
41
|
-
'cost'
|
|
41
|
+
'cost'?: number;
|
|
42
42
|
/**
|
|
43
43
|
* 超标原因
|
|
44
44
|
* @type {string}
|
|
@@ -0,0 +1,50 @@
|
|
|
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 PricingItem
|
|
16
|
+
*/
|
|
17
|
+
export interface PricingItem {
|
|
18
|
+
/**
|
|
19
|
+
* 能源类型
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PricingItem
|
|
22
|
+
*/
|
|
23
|
+
'rateType'?: PricingItemRateTypeEnum;
|
|
24
|
+
/**
|
|
25
|
+
* 用量
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof PricingItem
|
|
28
|
+
*/
|
|
29
|
+
'consumption'?: number;
|
|
30
|
+
/**
|
|
31
|
+
* 费用
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof PricingItem
|
|
34
|
+
*/
|
|
35
|
+
'cost'?: number;
|
|
36
|
+
/**
|
|
37
|
+
* 单价
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof PricingItem
|
|
40
|
+
*/
|
|
41
|
+
'unitPrice'?: number;
|
|
42
|
+
}
|
|
43
|
+
export declare const PricingItemRateTypeEnum: {
|
|
44
|
+
readonly Peak: "PEAK";
|
|
45
|
+
readonly HighPeak: "HIGH_PEAK";
|
|
46
|
+
readonly Flat: "FLAT";
|
|
47
|
+
readonly Valley: "VALLEY";
|
|
48
|
+
readonly DeepValley: "DEEP_VALLEY";
|
|
49
|
+
};
|
|
50
|
+
export type PricingItemRateTypeEnum = typeof PricingItemRateTypeEnum[keyof typeof PricingItemRateTypeEnum];
|
|
@@ -0,0 +1,23 @@
|
|
|
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.PricingItemRateTypeEnum = void 0;
|
|
17
|
+
exports.PricingItemRateTypeEnum = {
|
|
18
|
+
Peak: 'PEAK',
|
|
19
|
+
HighPeak: 'HIGH_PEAK',
|
|
20
|
+
Flat: 'FLAT',
|
|
21
|
+
Valley: 'VALLEY',
|
|
22
|
+
DeepValley: 'DEEP_VALLEY'
|
|
23
|
+
};
|
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
// May contain unused imports in some cases
|
|
17
17
|
// @ts-ignore
|
|
18
18
|
import type { Item } from './item';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { PricingItem } from './pricing-item';
|
|
19
22
|
|
|
20
23
|
/**
|
|
21
24
|
* 新增能源消耗记录-新增-入参
|
|
@@ -137,6 +140,12 @@ export interface EnergyCostAddRecordDTO {
|
|
|
137
140
|
* @memberof EnergyCostAddRecordDTO
|
|
138
141
|
*/
|
|
139
142
|
'scenarios'?: Array<Item>;
|
|
143
|
+
/**
|
|
144
|
+
*
|
|
145
|
+
* @type {Array<PricingItem>}
|
|
146
|
+
* @memberof EnergyCostAddRecordDTO
|
|
147
|
+
*/
|
|
148
|
+
'pricingItem'?: Array<PricingItem>;
|
|
140
149
|
}
|
|
141
150
|
|
|
142
151
|
export const EnergyCostAddRecordDTOEnergyTypeEnum = {
|