@gizone/rrs-client 4.2.9-alpha.538 → 4.2.9-alpha.540

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 (51) hide show
  1. package/.openapi-generator/FILES +5 -0
  2. package/api.ts +1 -0
  3. package/apis/energy-cost-controller-api.ts +158 -474
  4. package/apis/energy-cost-record-controller-api.ts +686 -0
  5. package/dist/api.d.ts +1 -0
  6. package/dist/api.js +1 -0
  7. package/dist/apis/energy-cost-controller-api.d.ts +111 -282
  8. package/dist/apis/energy-cost-controller-api.js +111 -337
  9. package/dist/apis/energy-cost-record-controller-api.d.ts +377 -0
  10. package/dist/apis/energy-cost-record-controller-api.js +523 -0
  11. package/dist/esm/api.d.ts +1 -0
  12. package/dist/esm/api.js +1 -0
  13. package/dist/esm/apis/energy-cost-controller-api.d.ts +111 -282
  14. package/dist/esm/apis/energy-cost-controller-api.js +110 -336
  15. package/dist/esm/apis/energy-cost-record-controller-api.d.ts +377 -0
  16. package/dist/esm/apis/energy-cost-record-controller-api.js +516 -0
  17. package/dist/esm/models/energy-cost-month-setting-list-summary-standards-vo.d.ts +96 -0
  18. package/dist/esm/models/energy-cost-month-setting-list-summary-standards-vo.js +23 -0
  19. package/dist/esm/models/energy-cost-month-setting-list-vo.d.ts +30 -25
  20. package/dist/esm/models/energy-cost-month-setting-list-vo.js +4 -1
  21. package/dist/esm/models/energy-cost-setting-summy-add-dto.d.ts +41 -0
  22. package/dist/esm/models/energy-cost-setting-summy-add-dto.js +17 -0
  23. package/dist/esm/models/energy-cost-setting-summy-update-dto.d.ts +47 -0
  24. package/dist/esm/models/energy-cost-setting-summy-update-dto.js +17 -0
  25. package/dist/esm/models/index.d.ts +4 -0
  26. package/dist/esm/models/index.js +4 -0
  27. package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +3 -3
  28. package/dist/esm/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.d.ts +62 -0
  29. package/dist/esm/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.js +14 -0
  30. package/dist/models/energy-cost-month-setting-list-summary-standards-vo.d.ts +96 -0
  31. package/dist/models/energy-cost-month-setting-list-summary-standards-vo.js +26 -0
  32. package/dist/models/energy-cost-month-setting-list-vo.d.ts +30 -25
  33. package/dist/models/energy-cost-month-setting-list-vo.js +5 -0
  34. package/dist/models/energy-cost-setting-summy-add-dto.d.ts +41 -0
  35. package/dist/models/energy-cost-setting-summy-add-dto.js +20 -0
  36. package/dist/models/energy-cost-setting-summy-update-dto.d.ts +47 -0
  37. package/dist/models/energy-cost-setting-summy-update-dto.js +20 -0
  38. package/dist/models/index.d.ts +4 -0
  39. package/dist/models/index.js +4 -0
  40. package/dist/models/ipage-energy-cost-record-info-vo.d.ts +3 -3
  41. package/dist/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.d.ts +62 -0
  42. package/dist/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.js +15 -0
  43. package/models/energy-cost-month-setting-list-summary-standards-vo.ts +106 -0
  44. package/models/energy-cost-month-setting-list-vo.ts +33 -25
  45. package/models/energy-cost-setting-summy-add-dto.ts +50 -0
  46. package/models/energy-cost-setting-summy-update-dto.ts +56 -0
  47. package/models/index.ts +4 -0
  48. package/models/ipage-energy-cost-record-info-vo.ts +3 -3
  49. package/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.ts +72 -0
  50. package/ossutil.log +1056 -1050
  51. package/package.json +1 -1
@@ -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
+ };
@@ -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';
@@ -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);
@@ -38,8 +38,9 @@ export interface IPageEnergyCostRecordInfoVO {
38
38
  *
39
39
  * @type {boolean}
40
40
  * @memberof IPageEnergyCostRecordInfoVO
41
+ * @deprecated
41
42
  */
42
- 'searchCount'?: boolean;
43
+ 'hitCount'?: boolean;
43
44
  /**
44
45
  *
45
46
  * @type {number}
@@ -50,9 +51,8 @@ export interface IPageEnergyCostRecordInfoVO {
50
51
  *
51
52
  * @type {boolean}
52
53
  * @memberof IPageEnergyCostRecordInfoVO
53
- * @deprecated
54
54
  */
55
- 'hitCount'?: boolean;
55
+ 'searchCount'?: 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 { 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 });
@@ -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 {string}
25
+ * @type {number}
26
26
  * @memberof EnergyCostMonthSettingListVO
27
27
  */
28
- 'id'?: string;
28
+ 'id'?: number;
29
29
  /**
30
30
  * 园区ID
31
- * @type {string}
31
+ * @type {number}
32
32
  * @memberof EnergyCostMonthSettingListVO
33
33
  */
34
- 'parkId'?: string;
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'?: string;
46
+ 'energyType'?: EnergyCostMonthSettingListVOEnergyTypeEnum;
47
47
  /**
48
48
  * 冷藏场景ID
49
- * @type {string}
49
+ * @type {number}
50
50
  * @memberof EnergyCostMonthSettingListVO
51
51
  */
52
- 'csId'?: string;
52
+ 'csId'?: number;
53
53
  /**
54
54
  * 冷藏场景标准值
55
- * @type {string}
55
+ * @type {number}
56
56
  * @memberof EnergyCostMonthSettingListVO
57
57
  */
58
- 'csStandardValue'?: string;
58
+ 'csStandardValue'?: number;
59
59
  /**
60
60
  * 智慧仓库场景ID
61
- * @type {string}
61
+ * @type {number}
62
62
  * @memberof EnergyCostMonthSettingListVO
63
63
  */
64
- 'swId'?: string;
64
+ 'swId'?: number;
65
65
  /**
66
66
  * 智慧仓库标准值
67
- * @type {string}
67
+ * @type {number}
68
68
  * @memberof EnergyCostMonthSettingListVO
69
69
  */
70
- 'swStandardValue'?: string;
70
+ 'swStandardValue'?: number;
71
71
  /**
72
72
  * 租赁租户场景ID
73
- * @type {string}
73
+ * @type {number}
74
74
  * @memberof EnergyCostMonthSettingListVO
75
75
  */
76
- 'ltId'?: string;
76
+ 'ltId'?: number;
77
77
  /**
78
78
  * 租赁租户标准值
79
- * @type {string}
79
+ * @type {number}
80
80
  * @memberof EnergyCostMonthSettingListVO
81
81
  */
82
- 'ltStandardValue'?: string;
82
+ 'ltStandardValue'?: number;
83
83
  /**
84
84
  * 私有传统仓库场景ID
85
- * @type {string}
85
+ * @type {number}
86
86
  * @memberof EnergyCostMonthSettingListVO
87
87
  */
88
- 'pcwId'?: string;
88
+ 'pcwId'?: number;
89
89
  /**
90
90
  * 私有传统仓库标准值
91
- * @type {string}
91
+ * @type {number}
92
92
  * @memberof EnergyCostMonthSettingListVO
93
93
  */
94
- 'pcwStandardValue'?: string;
94
+ 'pcwStandardValue'?: number;
95
95
  /**
96
96
  * 无场景类型(水)ID
97
- * @type {string}
97
+ * @type {number}
98
98
  * @memberof EnergyCostMonthSettingListVO
99
99
  */
100
- 'waterId'?: string;
100
+ 'waterId'?: number;
101
101
  /**
102
102
  * 无场景类型(水)标准值
103
- * @type {string}
103
+ * @type {number}
104
104
  * @memberof EnergyCostMonthSettingListVO
105
105
  */
106
- 'waterStandardValue'?: string;
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
+
@@ -0,0 +1,50 @@
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 EnergyCostSettingSummyAddDTO
21
+ */
22
+ export interface EnergyCostSettingSummyAddDTO {
23
+ /**
24
+ * 能源类型
25
+ * @type {string}
26
+ * @memberof EnergyCostSettingSummyAddDTO
27
+ */
28
+ 'energyType': EnergyCostSettingSummyAddDTOEnergyTypeEnum;
29
+ /**
30
+ * 标准值
31
+ * @type {number}
32
+ * @memberof EnergyCostSettingSummyAddDTO
33
+ */
34
+ 'standardValue': number;
35
+ /**
36
+ * 日期-年月
37
+ * @type {string}
38
+ * @memberof EnergyCostSettingSummyAddDTO
39
+ */
40
+ 'yearMonths': string;
41
+ }
42
+
43
+ export const EnergyCostSettingSummyAddDTOEnergyTypeEnum = {
44
+ Electric: 'ELECTRIC',
45
+ Water: 'WATER'
46
+ } as const;
47
+
48
+ export type EnergyCostSettingSummyAddDTOEnergyTypeEnum = typeof EnergyCostSettingSummyAddDTOEnergyTypeEnum[keyof typeof EnergyCostSettingSummyAddDTOEnergyTypeEnum];
49
+
50
+
@@ -0,0 +1,56 @@
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 EnergyCostSettingSummyUpdateDTO
21
+ */
22
+ export interface EnergyCostSettingSummyUpdateDTO {
23
+ /**
24
+ * id
25
+ * @type {number}
26
+ * @memberof EnergyCostSettingSummyUpdateDTO
27
+ */
28
+ 'id': number;
29
+ /**
30
+ * 能源类型
31
+ * @type {string}
32
+ * @memberof EnergyCostSettingSummyUpdateDTO
33
+ */
34
+ 'energyType': EnergyCostSettingSummyUpdateDTOEnergyTypeEnum;
35
+ /**
36
+ * 标准值
37
+ * @type {number}
38
+ * @memberof EnergyCostSettingSummyUpdateDTO
39
+ */
40
+ 'standardValue': number;
41
+ /**
42
+ * 日期-年月
43
+ * @type {string}
44
+ * @memberof EnergyCostSettingSummyUpdateDTO
45
+ */
46
+ 'yearMonths': string;
47
+ }
48
+
49
+ export const EnergyCostSettingSummyUpdateDTOEnergyTypeEnum = {
50
+ Electric: 'ELECTRIC',
51
+ Water: 'WATER'
52
+ } as const;
53
+
54
+ export type EnergyCostSettingSummyUpdateDTOEnergyTypeEnum = typeof EnergyCostSettingSummyUpdateDTOEnergyTypeEnum[keyof typeof EnergyCostSettingSummyUpdateDTOEnergyTypeEnum];
55
+
56
+
package/models/index.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';
@@ -45,8 +45,9 @@ export interface IPageEnergyCostRecordInfoVO {
45
45
  *
46
46
  * @type {boolean}
47
47
  * @memberof IPageEnergyCostRecordInfoVO
48
+ * @deprecated
48
49
  */
49
- 'searchCount'?: boolean;
50
+ 'hitCount'?: boolean;
50
51
  /**
51
52
  *
52
53
  * @type {number}
@@ -57,9 +58,8 @@ export interface IPageEnergyCostRecordInfoVO {
57
58
  *
58
59
  * @type {boolean}
59
60
  * @memberof IPageEnergyCostRecordInfoVO
60
- * @deprecated
61
61
  */
62
- 'hitCount'?: boolean;
62
+ 'searchCount'?: boolean;
63
63
  /**
64
64
  *
65
65
  * @type {number}