@gizone/rrs-client 4.2.9-alpha.538 → 4.2.9-alpha.539
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 +5 -1
- package/api.ts +1 -1
- package/apis/{energy-cost-controller-api.ts → default-api.ts} +426 -118
- package/dist/api.d.ts +1 -1
- package/dist/api.js +1 -1
- package/dist/apis/default-api.d.ts +707 -0
- package/dist/apis/{energy-cost-controller-api.js → default-api.js} +289 -61
- package/dist/esm/api.d.ts +1 -1
- package/dist/esm/api.js +1 -1
- package/dist/esm/apis/default-api.d.ts +707 -0
- package/dist/esm/apis/{energy-cost-controller-api.js → default-api.js} +284 -56
- package/dist/esm/models/energy-cost-month-setting-list-summary-standards-vo.d.ts +96 -0
- package/dist/esm/models/energy-cost-month-setting-list-summary-standards-vo.js +23 -0
- package/dist/esm/models/energy-cost-month-setting-list-vo.d.ts +30 -25
- package/dist/esm/models/energy-cost-month-setting-list-vo.js +4 -1
- package/dist/esm/models/energy-cost-setting-summy-add-dto.d.ts +41 -0
- package/dist/esm/models/energy-cost-setting-summy-add-dto.js +17 -0
- package/dist/esm/models/energy-cost-setting-summy-update-dto.d.ts +47 -0
- package/dist/esm/models/energy-cost-setting-summy-update-dto.js +17 -0
- 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/json-result-list-energy-cost-month-setting-list-summary-standards-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.js +14 -0
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/models/energy-cost-month-setting-list-summary-standards-vo.d.ts +96 -0
- package/dist/models/energy-cost-month-setting-list-summary-standards-vo.js +26 -0
- package/dist/models/energy-cost-month-setting-list-vo.d.ts +30 -25
- package/dist/models/energy-cost-month-setting-list-vo.js +5 -0
- package/dist/models/energy-cost-setting-summy-add-dto.d.ts +41 -0
- package/dist/models/energy-cost-setting-summy-add-dto.js +20 -0
- package/dist/models/energy-cost-setting-summy-update-dto.d.ts +47 -0
- package/dist/models/energy-cost-setting-summy-update-dto.js +20 -0
- 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/json-result-list-energy-cost-month-setting-list-summary-standards-vo.d.ts +62 -0
- package/dist/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.js +15 -0
- package/dist/models/sys-user.d.ts +4 -4
- package/models/energy-cost-month-setting-list-summary-standards-vo.ts +106 -0
- package/models/energy-cost-month-setting-list-vo.ts +33 -25
- package/models/energy-cost-setting-summy-add-dto.ts +50 -0
- package/models/energy-cost-setting-summy-update-dto.ts +56 -0
- package/models/index.ts +4 -0
- package/models/ipage-energy-cost-record-info-vo.ts +5 -5
- package/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.ts +72 -0
- package/models/sys-user.ts +4 -4
- package/ossutil.log +1056 -1050
- package/package.json +1 -1
- package/dist/apis/energy-cost-controller-api.d.ts +0 -542
- package/dist/esm/apis/energy-cost-controller-api.d.ts +0 -542
|
@@ -17,16 +17,16 @@
|
|
|
17
17
|
export interface EnergyCostMonthSettingListVO {
|
|
18
18
|
/**
|
|
19
19
|
* ID
|
|
20
|
-
* @type {
|
|
20
|
+
* @type {number}
|
|
21
21
|
* @memberof EnergyCostMonthSettingListVO
|
|
22
22
|
*/
|
|
23
|
-
'id'?:
|
|
23
|
+
'id'?: number;
|
|
24
24
|
/**
|
|
25
25
|
* 园区ID
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {number}
|
|
27
27
|
* @memberof EnergyCostMonthSettingListVO
|
|
28
28
|
*/
|
|
29
|
-
'parkId'?:
|
|
29
|
+
'parkId'?: number;
|
|
30
30
|
/**
|
|
31
31
|
* 年月
|
|
32
32
|
* @type {string}
|
|
@@ -38,65 +38,70 @@ export interface EnergyCostMonthSettingListVO {
|
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof EnergyCostMonthSettingListVO
|
|
40
40
|
*/
|
|
41
|
-
'energyType'?:
|
|
41
|
+
'energyType'?: EnergyCostMonthSettingListVOEnergyTypeEnum;
|
|
42
42
|
/**
|
|
43
43
|
* 冷藏场景ID
|
|
44
|
-
* @type {
|
|
44
|
+
* @type {number}
|
|
45
45
|
* @memberof EnergyCostMonthSettingListVO
|
|
46
46
|
*/
|
|
47
|
-
'csId'?:
|
|
47
|
+
'csId'?: number;
|
|
48
48
|
/**
|
|
49
49
|
* 冷藏场景标准值
|
|
50
|
-
* @type {
|
|
50
|
+
* @type {number}
|
|
51
51
|
* @memberof EnergyCostMonthSettingListVO
|
|
52
52
|
*/
|
|
53
|
-
'csStandardValue'?:
|
|
53
|
+
'csStandardValue'?: number;
|
|
54
54
|
/**
|
|
55
55
|
* 智慧仓库场景ID
|
|
56
|
-
* @type {
|
|
56
|
+
* @type {number}
|
|
57
57
|
* @memberof EnergyCostMonthSettingListVO
|
|
58
58
|
*/
|
|
59
|
-
'swId'?:
|
|
59
|
+
'swId'?: number;
|
|
60
60
|
/**
|
|
61
61
|
* 智慧仓库标准值
|
|
62
|
-
* @type {
|
|
62
|
+
* @type {number}
|
|
63
63
|
* @memberof EnergyCostMonthSettingListVO
|
|
64
64
|
*/
|
|
65
|
-
'swStandardValue'?:
|
|
65
|
+
'swStandardValue'?: number;
|
|
66
66
|
/**
|
|
67
67
|
* 租赁租户场景ID
|
|
68
|
-
* @type {
|
|
68
|
+
* @type {number}
|
|
69
69
|
* @memberof EnergyCostMonthSettingListVO
|
|
70
70
|
*/
|
|
71
|
-
'ltId'?:
|
|
71
|
+
'ltId'?: number;
|
|
72
72
|
/**
|
|
73
73
|
* 租赁租户标准值
|
|
74
|
-
* @type {
|
|
74
|
+
* @type {number}
|
|
75
75
|
* @memberof EnergyCostMonthSettingListVO
|
|
76
76
|
*/
|
|
77
|
-
'ltStandardValue'?:
|
|
77
|
+
'ltStandardValue'?: number;
|
|
78
78
|
/**
|
|
79
79
|
* 私有传统仓库场景ID
|
|
80
|
-
* @type {
|
|
80
|
+
* @type {number}
|
|
81
81
|
* @memberof EnergyCostMonthSettingListVO
|
|
82
82
|
*/
|
|
83
|
-
'pcwId'?:
|
|
83
|
+
'pcwId'?: number;
|
|
84
84
|
/**
|
|
85
85
|
* 私有传统仓库标准值
|
|
86
|
-
* @type {
|
|
86
|
+
* @type {number}
|
|
87
87
|
* @memberof EnergyCostMonthSettingListVO
|
|
88
88
|
*/
|
|
89
|
-
'pcwStandardValue'?:
|
|
89
|
+
'pcwStandardValue'?: number;
|
|
90
90
|
/**
|
|
91
91
|
* 无场景类型(水)ID
|
|
92
|
-
* @type {
|
|
92
|
+
* @type {number}
|
|
93
93
|
* @memberof EnergyCostMonthSettingListVO
|
|
94
94
|
*/
|
|
95
|
-
'waterId'?:
|
|
95
|
+
'waterId'?: number;
|
|
96
96
|
/**
|
|
97
97
|
* 无场景类型(水)标准值
|
|
98
|
-
* @type {
|
|
98
|
+
* @type {number}
|
|
99
99
|
* @memberof EnergyCostMonthSettingListVO
|
|
100
100
|
*/
|
|
101
|
-
'waterStandardValue'?:
|
|
101
|
+
'waterStandardValue'?: number;
|
|
102
102
|
}
|
|
103
|
+
export declare const EnergyCostMonthSettingListVOEnergyTypeEnum: {
|
|
104
|
+
readonly Electric: "ELECTRIC";
|
|
105
|
+
readonly Water: "WATER";
|
|
106
|
+
};
|
|
107
|
+
export type EnergyCostMonthSettingListVOEnergyTypeEnum = typeof EnergyCostMonthSettingListVOEnergyTypeEnum[keyof typeof EnergyCostMonthSettingListVOEnergyTypeEnum];
|
|
@@ -13,3 +13,8 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.EnergyCostMonthSettingListVOEnergyTypeEnum = void 0;
|
|
17
|
+
exports.EnergyCostMonthSettingListVOEnergyTypeEnum = {
|
|
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 EnergyCostSettingSummyAddDTO
|
|
16
|
+
*/
|
|
17
|
+
export interface EnergyCostSettingSummyAddDTO {
|
|
18
|
+
/**
|
|
19
|
+
* 能源类型
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof EnergyCostSettingSummyAddDTO
|
|
22
|
+
*/
|
|
23
|
+
'energyType': EnergyCostSettingSummyAddDTOEnergyTypeEnum;
|
|
24
|
+
/**
|
|
25
|
+
* 标准值
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof EnergyCostSettingSummyAddDTO
|
|
28
|
+
*/
|
|
29
|
+
'standardValue': number;
|
|
30
|
+
/**
|
|
31
|
+
* 日期-年月
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof EnergyCostSettingSummyAddDTO
|
|
34
|
+
*/
|
|
35
|
+
'yearMonths': string;
|
|
36
|
+
}
|
|
37
|
+
export declare const EnergyCostSettingSummyAddDTOEnergyTypeEnum: {
|
|
38
|
+
readonly Electric: "ELECTRIC";
|
|
39
|
+
readonly Water: "WATER";
|
|
40
|
+
};
|
|
41
|
+
export type EnergyCostSettingSummyAddDTOEnergyTypeEnum = typeof EnergyCostSettingSummyAddDTOEnergyTypeEnum[keyof typeof EnergyCostSettingSummyAddDTOEnergyTypeEnum];
|
|
@@ -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.EnergyCostSettingSummyAddDTOEnergyTypeEnum = void 0;
|
|
17
|
+
exports.EnergyCostSettingSummyAddDTOEnergyTypeEnum = {
|
|
18
|
+
Electric: 'ELECTRIC',
|
|
19
|
+
Water: 'WATER'
|
|
20
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
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 EnergyCostSettingSummyUpdateDTO
|
|
16
|
+
*/
|
|
17
|
+
export interface EnergyCostSettingSummyUpdateDTO {
|
|
18
|
+
/**
|
|
19
|
+
* id
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof EnergyCostSettingSummyUpdateDTO
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* 能源类型
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof EnergyCostSettingSummyUpdateDTO
|
|
28
|
+
*/
|
|
29
|
+
'energyType': EnergyCostSettingSummyUpdateDTOEnergyTypeEnum;
|
|
30
|
+
/**
|
|
31
|
+
* 标准值
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof EnergyCostSettingSummyUpdateDTO
|
|
34
|
+
*/
|
|
35
|
+
'standardValue': number;
|
|
36
|
+
/**
|
|
37
|
+
* 日期-年月
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof EnergyCostSettingSummyUpdateDTO
|
|
40
|
+
*/
|
|
41
|
+
'yearMonths': string;
|
|
42
|
+
}
|
|
43
|
+
export declare const EnergyCostSettingSummyUpdateDTOEnergyTypeEnum: {
|
|
44
|
+
readonly Electric: "ELECTRIC";
|
|
45
|
+
readonly Water: "WATER";
|
|
46
|
+
};
|
|
47
|
+
export type EnergyCostSettingSummyUpdateDTOEnergyTypeEnum = typeof EnergyCostSettingSummyUpdateDTOEnergyTypeEnum[keyof typeof EnergyCostSettingSummyUpdateDTOEnergyTypeEnum];
|
|
@@ -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.EnergyCostSettingSummyUpdateDTOEnergyTypeEnum = void 0;
|
|
17
|
+
exports.EnergyCostSettingSummyUpdateDTOEnergyTypeEnum = {
|
|
18
|
+
Electric: 'ELECTRIC',
|
|
19
|
+
Water: 'WATER'
|
|
20
|
+
};
|
package/dist/models/index.d.ts
CHANGED
|
@@ -106,9 +106,12 @@ 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-month-setting-list-summary-standards-vo';
|
|
109
110
|
export * from './energy-cost-month-setting-list-vo';
|
|
110
111
|
export * from './energy-cost-record-info-vo';
|
|
111
112
|
export * from './energy-cost-scenarios-info-vo';
|
|
113
|
+
export * from './energy-cost-setting-summy-add-dto';
|
|
114
|
+
export * from './energy-cost-setting-summy-update-dto';
|
|
112
115
|
export * from './energy-cost-update-setting-dto';
|
|
113
116
|
export * from './equipment';
|
|
114
117
|
export * from './equipment-add-redis-list-dto';
|
|
@@ -227,6 +230,7 @@ export * from './json-result-list-dashboard-surveillance-park-group-stats-vo';
|
|
|
227
230
|
export * from './json-result-list-dashboard-work-order-park-group-stats-vo';
|
|
228
231
|
export * from './json-result-list-dashboard-work-order-type-group-stats-vo';
|
|
229
232
|
export * from './json-result-list-dashboard-work-order-type-subcategory-group-stats-vo';
|
|
233
|
+
export * from './json-result-list-energy-cost-month-setting-list-summary-standards-vo';
|
|
230
234
|
export * from './json-result-list-energy-cost-month-setting-list-vo';
|
|
231
235
|
export * from './json-result-list-equipment-detail-dto';
|
|
232
236
|
export * from './json-result-list-equipment-qr-code-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -122,9 +122,12 @@ __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-month-setting-list-summary-standards-vo"), exports);
|
|
125
126
|
__exportStar(require("./energy-cost-month-setting-list-vo"), exports);
|
|
126
127
|
__exportStar(require("./energy-cost-record-info-vo"), exports);
|
|
127
128
|
__exportStar(require("./energy-cost-scenarios-info-vo"), exports);
|
|
129
|
+
__exportStar(require("./energy-cost-setting-summy-add-dto"), exports);
|
|
130
|
+
__exportStar(require("./energy-cost-setting-summy-update-dto"), exports);
|
|
128
131
|
__exportStar(require("./energy-cost-update-setting-dto"), exports);
|
|
129
132
|
__exportStar(require("./equipment"), exports);
|
|
130
133
|
__exportStar(require("./equipment-add-redis-list-dto"), exports);
|
|
@@ -243,6 +246,7 @@ __exportStar(require("./json-result-list-dashboard-surveillance-park-group-stats
|
|
|
243
246
|
__exportStar(require("./json-result-list-dashboard-work-order-park-group-stats-vo"), exports);
|
|
244
247
|
__exportStar(require("./json-result-list-dashboard-work-order-type-group-stats-vo"), exports);
|
|
245
248
|
__exportStar(require("./json-result-list-dashboard-work-order-type-subcategory-group-stats-vo"), exports);
|
|
249
|
+
__exportStar(require("./json-result-list-energy-cost-month-setting-list-summary-standards-vo"), exports);
|
|
246
250
|
__exportStar(require("./json-result-list-energy-cost-month-setting-list-vo"), exports);
|
|
247
251
|
__exportStar(require("./json-result-list-equipment-detail-dto"), exports);
|
|
248
252
|
__exportStar(require("./json-result-list-equipment-qr-code-dto"), exports);
|
|
@@ -42,17 +42,17 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
42
42
|
'searchCount'?: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
|
-
* @type {
|
|
45
|
+
* @type {boolean}
|
|
46
46
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
|
+
* @deprecated
|
|
47
48
|
*/
|
|
48
|
-
'
|
|
49
|
+
'hitCount'?: boolean;
|
|
49
50
|
/**
|
|
50
51
|
*
|
|
51
|
-
* @type {
|
|
52
|
+
* @type {number}
|
|
52
53
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
53
|
-
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'pages'?: number;
|
|
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 { EnergyCostMonthSettingListSummaryStandardsVO } from './energy-cost-month-setting-list-summary-standards-vo';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultListEnergyCostMonthSettingListSummaryStandardsVO
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultListEnergyCostMonthSettingListSummaryStandardsVO {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultListEnergyCostMonthSettingListSummaryStandardsVO
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultListEnergyCostMonthSettingListSummaryStandardsVO
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultListEnergyCostMonthSettingListSummaryStandardsVO
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 返回数据,可以是任意类型的值
|
|
40
|
+
* @type {Array<EnergyCostMonthSettingListSummaryStandardsVO>}
|
|
41
|
+
* @memberof JsonResultListEnergyCostMonthSettingListSummaryStandardsVO
|
|
42
|
+
*/
|
|
43
|
+
'data'?: Array<EnergyCostMonthSettingListSummaryStandardsVO> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultListEnergyCostMonthSettingListSummaryStandardsVO
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultListEnergyCostMonthSettingListSummaryStandardsVO
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultListEnergyCostMonthSettingListSummaryStandardsVO
|
|
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 });
|
|
@@ -377,14 +377,14 @@ export interface SysUser {
|
|
|
377
377
|
'sourceUserId'?: string;
|
|
378
378
|
/**
|
|
379
379
|
*
|
|
380
|
-
* @type {
|
|
380
|
+
* @type {string}
|
|
381
381
|
* @memberof SysUser
|
|
382
382
|
*/
|
|
383
|
-
'
|
|
383
|
+
'cid'?: string;
|
|
384
384
|
/**
|
|
385
385
|
*
|
|
386
|
-
* @type {
|
|
386
|
+
* @type {number}
|
|
387
387
|
* @memberof SysUser
|
|
388
388
|
*/
|
|
389
|
-
'
|
|
389
|
+
'cuserId'?: number;
|
|
390
390
|
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 能源费用管理-月度设置列表-汇总列表
|
|
19
|
+
* @export
|
|
20
|
+
* @interface EnergyCostMonthSettingListSummaryStandardsVO
|
|
21
|
+
*/
|
|
22
|
+
export interface EnergyCostMonthSettingListSummaryStandardsVO {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof EnergyCostMonthSettingListSummaryStandardsVO
|
|
27
|
+
*/
|
|
28
|
+
'id'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* 园区id
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof EnergyCostMonthSettingListSummaryStandardsVO
|
|
33
|
+
*/
|
|
34
|
+
'parkId'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 能源类型
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof EnergyCostMonthSettingListSummaryStandardsVO
|
|
39
|
+
*/
|
|
40
|
+
'energyType'?: EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum;
|
|
41
|
+
/**
|
|
42
|
+
* 能源类型单位
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof EnergyCostMonthSettingListSummaryStandardsVO
|
|
45
|
+
*/
|
|
46
|
+
'energyTypeUnit'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* 使用场景
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof EnergyCostMonthSettingListSummaryStandardsVO
|
|
51
|
+
*/
|
|
52
|
+
'usageScenariosType'?: EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum;
|
|
53
|
+
/**
|
|
54
|
+
* 标准值
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof EnergyCostMonthSettingListSummaryStandardsVO
|
|
57
|
+
*/
|
|
58
|
+
'standardValue'?: number;
|
|
59
|
+
/**
|
|
60
|
+
* 年月
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof EnergyCostMonthSettingListSummaryStandardsVO
|
|
63
|
+
*/
|
|
64
|
+
'yearMonths'?: string;
|
|
65
|
+
/**
|
|
66
|
+
* 年
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof EnergyCostMonthSettingListSummaryStandardsVO
|
|
69
|
+
*/
|
|
70
|
+
'year'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* 月
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof EnergyCostMonthSettingListSummaryStandardsVO
|
|
75
|
+
*/
|
|
76
|
+
'month'?: string;
|
|
77
|
+
/**
|
|
78
|
+
* 创建时间
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof EnergyCostMonthSettingListSummaryStandardsVO
|
|
81
|
+
*/
|
|
82
|
+
'createTime'?: string;
|
|
83
|
+
/**
|
|
84
|
+
* 更新时间
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof EnergyCostMonthSettingListSummaryStandardsVO
|
|
87
|
+
*/
|
|
88
|
+
'updateTime'?: string;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export const EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum = {
|
|
92
|
+
Electric: 'ELECTRIC',
|
|
93
|
+
Water: 'WATER'
|
|
94
|
+
} as const;
|
|
95
|
+
|
|
96
|
+
export type EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum = typeof EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum[keyof typeof EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum];
|
|
97
|
+
export const EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum = {
|
|
98
|
+
ColdStorage: 'COLD_STORAGE',
|
|
99
|
+
SmartWarehouse: 'SMART_WAREHOUSE',
|
|
100
|
+
LeasingTenant: 'LEASING_TENANT',
|
|
101
|
+
PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
|
|
102
|
+
} as const;
|
|
103
|
+
|
|
104
|
+
export type EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum = typeof EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum[keyof typeof EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum];
|
|
105
|
+
|
|
106
|
+
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
export interface EnergyCostMonthSettingListVO {
|
|
23
23
|
/**
|
|
24
24
|
* ID
|
|
25
|
-
* @type {
|
|
25
|
+
* @type {number}
|
|
26
26
|
* @memberof EnergyCostMonthSettingListVO
|
|
27
27
|
*/
|
|
28
|
-
'id'?:
|
|
28
|
+
'id'?: number;
|
|
29
29
|
/**
|
|
30
30
|
* 园区ID
|
|
31
|
-
* @type {
|
|
31
|
+
* @type {number}
|
|
32
32
|
* @memberof EnergyCostMonthSettingListVO
|
|
33
33
|
*/
|
|
34
|
-
'parkId'?:
|
|
34
|
+
'parkId'?: number;
|
|
35
35
|
/**
|
|
36
36
|
* 年月
|
|
37
37
|
* @type {string}
|
|
@@ -43,66 +43,74 @@ export interface EnergyCostMonthSettingListVO {
|
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof EnergyCostMonthSettingListVO
|
|
45
45
|
*/
|
|
46
|
-
'energyType'?:
|
|
46
|
+
'energyType'?: EnergyCostMonthSettingListVOEnergyTypeEnum;
|
|
47
47
|
/**
|
|
48
48
|
* 冷藏场景ID
|
|
49
|
-
* @type {
|
|
49
|
+
* @type {number}
|
|
50
50
|
* @memberof EnergyCostMonthSettingListVO
|
|
51
51
|
*/
|
|
52
|
-
'csId'?:
|
|
52
|
+
'csId'?: number;
|
|
53
53
|
/**
|
|
54
54
|
* 冷藏场景标准值
|
|
55
|
-
* @type {
|
|
55
|
+
* @type {number}
|
|
56
56
|
* @memberof EnergyCostMonthSettingListVO
|
|
57
57
|
*/
|
|
58
|
-
'csStandardValue'?:
|
|
58
|
+
'csStandardValue'?: number;
|
|
59
59
|
/**
|
|
60
60
|
* 智慧仓库场景ID
|
|
61
|
-
* @type {
|
|
61
|
+
* @type {number}
|
|
62
62
|
* @memberof EnergyCostMonthSettingListVO
|
|
63
63
|
*/
|
|
64
|
-
'swId'?:
|
|
64
|
+
'swId'?: number;
|
|
65
65
|
/**
|
|
66
66
|
* 智慧仓库标准值
|
|
67
|
-
* @type {
|
|
67
|
+
* @type {number}
|
|
68
68
|
* @memberof EnergyCostMonthSettingListVO
|
|
69
69
|
*/
|
|
70
|
-
'swStandardValue'?:
|
|
70
|
+
'swStandardValue'?: number;
|
|
71
71
|
/**
|
|
72
72
|
* 租赁租户场景ID
|
|
73
|
-
* @type {
|
|
73
|
+
* @type {number}
|
|
74
74
|
* @memberof EnergyCostMonthSettingListVO
|
|
75
75
|
*/
|
|
76
|
-
'ltId'?:
|
|
76
|
+
'ltId'?: number;
|
|
77
77
|
/**
|
|
78
78
|
* 租赁租户标准值
|
|
79
|
-
* @type {
|
|
79
|
+
* @type {number}
|
|
80
80
|
* @memberof EnergyCostMonthSettingListVO
|
|
81
81
|
*/
|
|
82
|
-
'ltStandardValue'?:
|
|
82
|
+
'ltStandardValue'?: number;
|
|
83
83
|
/**
|
|
84
84
|
* 私有传统仓库场景ID
|
|
85
|
-
* @type {
|
|
85
|
+
* @type {number}
|
|
86
86
|
* @memberof EnergyCostMonthSettingListVO
|
|
87
87
|
*/
|
|
88
|
-
'pcwId'?:
|
|
88
|
+
'pcwId'?: number;
|
|
89
89
|
/**
|
|
90
90
|
* 私有传统仓库标准值
|
|
91
|
-
* @type {
|
|
91
|
+
* @type {number}
|
|
92
92
|
* @memberof EnergyCostMonthSettingListVO
|
|
93
93
|
*/
|
|
94
|
-
'pcwStandardValue'?:
|
|
94
|
+
'pcwStandardValue'?: number;
|
|
95
95
|
/**
|
|
96
96
|
* 无场景类型(水)ID
|
|
97
|
-
* @type {
|
|
97
|
+
* @type {number}
|
|
98
98
|
* @memberof EnergyCostMonthSettingListVO
|
|
99
99
|
*/
|
|
100
|
-
'waterId'?:
|
|
100
|
+
'waterId'?: number;
|
|
101
101
|
/**
|
|
102
102
|
* 无场景类型(水)标准值
|
|
103
|
-
* @type {
|
|
103
|
+
* @type {number}
|
|
104
104
|
* @memberof EnergyCostMonthSettingListVO
|
|
105
105
|
*/
|
|
106
|
-
'waterStandardValue'?:
|
|
106
|
+
'waterStandardValue'?: number;
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
+
export const EnergyCostMonthSettingListVOEnergyTypeEnum = {
|
|
110
|
+
Electric: 'ELECTRIC',
|
|
111
|
+
Water: 'WATER'
|
|
112
|
+
} as const;
|
|
113
|
+
|
|
114
|
+
export type EnergyCostMonthSettingListVOEnergyTypeEnum = typeof EnergyCostMonthSettingListVOEnergyTypeEnum[keyof typeof EnergyCostMonthSettingListVOEnergyTypeEnum];
|
|
115
|
+
|
|
116
|
+
|