@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.
Files changed (51) hide show
  1. package/.openapi-generator/FILES +5 -1
  2. package/api.ts +1 -1
  3. package/apis/{energy-cost-controller-api.ts → default-api.ts} +426 -118
  4. package/dist/api.d.ts +1 -1
  5. package/dist/api.js +1 -1
  6. package/dist/apis/default-api.d.ts +707 -0
  7. package/dist/apis/{energy-cost-controller-api.js → default-api.js} +289 -61
  8. package/dist/esm/api.d.ts +1 -1
  9. package/dist/esm/api.js +1 -1
  10. package/dist/esm/apis/default-api.d.ts +707 -0
  11. package/dist/esm/apis/{energy-cost-controller-api.js → default-api.js} +284 -56
  12. package/dist/esm/models/energy-cost-month-setting-list-summary-standards-vo.d.ts +96 -0
  13. package/dist/esm/models/energy-cost-month-setting-list-summary-standards-vo.js +23 -0
  14. package/dist/esm/models/energy-cost-month-setting-list-vo.d.ts +30 -25
  15. package/dist/esm/models/energy-cost-month-setting-list-vo.js +4 -1
  16. package/dist/esm/models/energy-cost-setting-summy-add-dto.d.ts +41 -0
  17. package/dist/esm/models/energy-cost-setting-summy-add-dto.js +17 -0
  18. package/dist/esm/models/energy-cost-setting-summy-update-dto.d.ts +47 -0
  19. package/dist/esm/models/energy-cost-setting-summy-update-dto.js +17 -0
  20. package/dist/esm/models/index.d.ts +4 -0
  21. package/dist/esm/models/index.js +4 -0
  22. package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +5 -5
  23. package/dist/esm/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.d.ts +62 -0
  24. package/dist/esm/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.js +14 -0
  25. package/dist/esm/models/sys-user.d.ts +4 -4
  26. package/dist/models/energy-cost-month-setting-list-summary-standards-vo.d.ts +96 -0
  27. package/dist/models/energy-cost-month-setting-list-summary-standards-vo.js +26 -0
  28. package/dist/models/energy-cost-month-setting-list-vo.d.ts +30 -25
  29. package/dist/models/energy-cost-month-setting-list-vo.js +5 -0
  30. package/dist/models/energy-cost-setting-summy-add-dto.d.ts +41 -0
  31. package/dist/models/energy-cost-setting-summy-add-dto.js +20 -0
  32. package/dist/models/energy-cost-setting-summy-update-dto.d.ts +47 -0
  33. package/dist/models/energy-cost-setting-summy-update-dto.js +20 -0
  34. package/dist/models/index.d.ts +4 -0
  35. package/dist/models/index.js +4 -0
  36. package/dist/models/ipage-energy-cost-record-info-vo.d.ts +5 -5
  37. package/dist/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.d.ts +62 -0
  38. package/dist/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.js +15 -0
  39. package/dist/models/sys-user.d.ts +4 -4
  40. package/models/energy-cost-month-setting-list-summary-standards-vo.ts +106 -0
  41. package/models/energy-cost-month-setting-list-vo.ts +33 -25
  42. package/models/energy-cost-setting-summy-add-dto.ts +50 -0
  43. package/models/energy-cost-setting-summy-update-dto.ts +56 -0
  44. package/models/index.ts +4 -0
  45. package/models/ipage-energy-cost-record-info-vo.ts +5 -5
  46. package/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.ts +72 -0
  47. package/models/sys-user.ts +4 -4
  48. package/ossutil.log +1056 -1050
  49. package/package.json +1 -1
  50. package/dist/apis/energy-cost-controller-api.d.ts +0 -542
  51. package/dist/esm/apis/energy-cost-controller-api.d.ts +0 -542
@@ -0,0 +1,96 @@
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 EnergyCostMonthSettingListSummaryStandardsVO
16
+ */
17
+ export interface EnergyCostMonthSettingListSummaryStandardsVO {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
22
+ */
23
+ 'id'?: number;
24
+ /**
25
+ * 园区id
26
+ * @type {number}
27
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
28
+ */
29
+ 'parkId'?: number;
30
+ /**
31
+ * 能源类型
32
+ * @type {string}
33
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
34
+ */
35
+ 'energyType'?: EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum;
36
+ /**
37
+ * 能源类型单位
38
+ * @type {string}
39
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
40
+ */
41
+ 'energyTypeUnit'?: string;
42
+ /**
43
+ * 使用场景
44
+ * @type {string}
45
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
46
+ */
47
+ 'usageScenariosType'?: EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum;
48
+ /**
49
+ * 标准值
50
+ * @type {number}
51
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
52
+ */
53
+ 'standardValue'?: number;
54
+ /**
55
+ * 年月
56
+ * @type {string}
57
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
58
+ */
59
+ 'yearMonths'?: string;
60
+ /**
61
+ * 年
62
+ * @type {string}
63
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
64
+ */
65
+ 'year'?: string;
66
+ /**
67
+ * 月
68
+ * @type {string}
69
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
70
+ */
71
+ 'month'?: string;
72
+ /**
73
+ * 创建时间
74
+ * @type {string}
75
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
76
+ */
77
+ 'createTime'?: string;
78
+ /**
79
+ * 更新时间
80
+ * @type {string}
81
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
82
+ */
83
+ 'updateTime'?: string;
84
+ }
85
+ export declare const EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum: {
86
+ readonly Electric: "ELECTRIC";
87
+ readonly Water: "WATER";
88
+ };
89
+ export type EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum = typeof EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum[keyof typeof EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum];
90
+ export declare const EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum: {
91
+ readonly ColdStorage: "COLD_STORAGE";
92
+ readonly SmartWarehouse: "SMART_WAREHOUSE";
93
+ readonly LeasingTenant: "LEASING_TENANT";
94
+ readonly PrivateConventionalWarehouse: "PRIVATE_CONVENTIONAL_WAREHOUSE";
95
+ };
96
+ export type EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum = typeof EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum[keyof typeof EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum];
@@ -0,0 +1,23 @@
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 EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum = {
15
+ Electric: 'ELECTRIC',
16
+ Water: 'WATER'
17
+ };
18
+ export const EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum = {
19
+ ColdStorage: 'COLD_STORAGE',
20
+ SmartWarehouse: 'SMART_WAREHOUSE',
21
+ LeasingTenant: 'LEASING_TENANT',
22
+ PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
23
+ };
@@ -17,16 +17,16 @@
17
17
  export interface EnergyCostMonthSettingListVO {
18
18
  /**
19
19
  * ID
20
- * @type {string}
20
+ * @type {number}
21
21
  * @memberof EnergyCostMonthSettingListVO
22
22
  */
23
- 'id'?: string;
23
+ 'id'?: number;
24
24
  /**
25
25
  * 园区ID
26
- * @type {string}
26
+ * @type {number}
27
27
  * @memberof EnergyCostMonthSettingListVO
28
28
  */
29
- 'parkId'?: string;
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'?: string;
41
+ 'energyType'?: EnergyCostMonthSettingListVOEnergyTypeEnum;
42
42
  /**
43
43
  * 冷藏场景ID
44
- * @type {string}
44
+ * @type {number}
45
45
  * @memberof EnergyCostMonthSettingListVO
46
46
  */
47
- 'csId'?: string;
47
+ 'csId'?: number;
48
48
  /**
49
49
  * 冷藏场景标准值
50
- * @type {string}
50
+ * @type {number}
51
51
  * @memberof EnergyCostMonthSettingListVO
52
52
  */
53
- 'csStandardValue'?: string;
53
+ 'csStandardValue'?: number;
54
54
  /**
55
55
  * 智慧仓库场景ID
56
- * @type {string}
56
+ * @type {number}
57
57
  * @memberof EnergyCostMonthSettingListVO
58
58
  */
59
- 'swId'?: string;
59
+ 'swId'?: number;
60
60
  /**
61
61
  * 智慧仓库标准值
62
- * @type {string}
62
+ * @type {number}
63
63
  * @memberof EnergyCostMonthSettingListVO
64
64
  */
65
- 'swStandardValue'?: string;
65
+ 'swStandardValue'?: number;
66
66
  /**
67
67
  * 租赁租户场景ID
68
- * @type {string}
68
+ * @type {number}
69
69
  * @memberof EnergyCostMonthSettingListVO
70
70
  */
71
- 'ltId'?: string;
71
+ 'ltId'?: number;
72
72
  /**
73
73
  * 租赁租户标准值
74
- * @type {string}
74
+ * @type {number}
75
75
  * @memberof EnergyCostMonthSettingListVO
76
76
  */
77
- 'ltStandardValue'?: string;
77
+ 'ltStandardValue'?: number;
78
78
  /**
79
79
  * 私有传统仓库场景ID
80
- * @type {string}
80
+ * @type {number}
81
81
  * @memberof EnergyCostMonthSettingListVO
82
82
  */
83
- 'pcwId'?: string;
83
+ 'pcwId'?: number;
84
84
  /**
85
85
  * 私有传统仓库标准值
86
- * @type {string}
86
+ * @type {number}
87
87
  * @memberof EnergyCostMonthSettingListVO
88
88
  */
89
- 'pcwStandardValue'?: string;
89
+ 'pcwStandardValue'?: number;
90
90
  /**
91
91
  * 无场景类型(水)ID
92
- * @type {string}
92
+ * @type {number}
93
93
  * @memberof EnergyCostMonthSettingListVO
94
94
  */
95
- 'waterId'?: string;
95
+ 'waterId'?: number;
96
96
  /**
97
97
  * 无场景类型(水)标准值
98
- * @type {string}
98
+ * @type {number}
99
99
  * @memberof EnergyCostMonthSettingListVO
100
100
  */
101
- 'waterStandardValue'?: string;
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];
@@ -11,4 +11,7 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- export {};
14
+ export const EnergyCostMonthSettingListVOEnergyTypeEnum = {
15
+ Electric: 'ELECTRIC',
16
+ Water: 'WATER'
17
+ };
@@ -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,17 @@
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 EnergyCostSettingSummyAddDTOEnergyTypeEnum = {
15
+ Electric: 'ELECTRIC',
16
+ Water: 'WATER'
17
+ };
@@ -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,17 @@
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 EnergyCostSettingSummyUpdateDTOEnergyTypeEnum = {
15
+ Electric: 'ELECTRIC',
16
+ Water: 'WATER'
17
+ };
@@ -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';
@@ -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';
@@ -42,17 +42,17 @@ export interface IPageEnergyCostRecordInfoVO {
42
42
  'searchCount'?: boolean;
43
43
  /**
44
44
  *
45
- * @type {number}
45
+ * @type {boolean}
46
46
  * @memberof IPageEnergyCostRecordInfoVO
47
+ * @deprecated
47
48
  */
48
- 'pages'?: number;
49
+ 'hitCount'?: boolean;
49
50
  /**
50
51
  *
51
- * @type {boolean}
52
+ * @type {number}
52
53
  * @memberof IPageEnergyCostRecordInfoVO
53
- * @deprecated
54
54
  */
55
- 'hitCount'?: boolean;
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,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,96 @@
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 EnergyCostMonthSettingListSummaryStandardsVO
16
+ */
17
+ export interface EnergyCostMonthSettingListSummaryStandardsVO {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
22
+ */
23
+ 'id'?: number;
24
+ /**
25
+ * 园区id
26
+ * @type {number}
27
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
28
+ */
29
+ 'parkId'?: number;
30
+ /**
31
+ * 能源类型
32
+ * @type {string}
33
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
34
+ */
35
+ 'energyType'?: EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum;
36
+ /**
37
+ * 能源类型单位
38
+ * @type {string}
39
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
40
+ */
41
+ 'energyTypeUnit'?: string;
42
+ /**
43
+ * 使用场景
44
+ * @type {string}
45
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
46
+ */
47
+ 'usageScenariosType'?: EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum;
48
+ /**
49
+ * 标准值
50
+ * @type {number}
51
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
52
+ */
53
+ 'standardValue'?: number;
54
+ /**
55
+ * 年月
56
+ * @type {string}
57
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
58
+ */
59
+ 'yearMonths'?: string;
60
+ /**
61
+ * 年
62
+ * @type {string}
63
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
64
+ */
65
+ 'year'?: string;
66
+ /**
67
+ * 月
68
+ * @type {string}
69
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
70
+ */
71
+ 'month'?: string;
72
+ /**
73
+ * 创建时间
74
+ * @type {string}
75
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
76
+ */
77
+ 'createTime'?: string;
78
+ /**
79
+ * 更新时间
80
+ * @type {string}
81
+ * @memberof EnergyCostMonthSettingListSummaryStandardsVO
82
+ */
83
+ 'updateTime'?: string;
84
+ }
85
+ export declare const EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum: {
86
+ readonly Electric: "ELECTRIC";
87
+ readonly Water: "WATER";
88
+ };
89
+ export type EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum = typeof EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum[keyof typeof EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum];
90
+ export declare const EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum: {
91
+ readonly ColdStorage: "COLD_STORAGE";
92
+ readonly SmartWarehouse: "SMART_WAREHOUSE";
93
+ readonly LeasingTenant: "LEASING_TENANT";
94
+ readonly PrivateConventionalWarehouse: "PRIVATE_CONVENTIONAL_WAREHOUSE";
95
+ };
96
+ export type EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum = typeof EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum[keyof typeof EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum];
@@ -0,0 +1,26 @@
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.EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum = exports.EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum = void 0;
17
+ exports.EnergyCostMonthSettingListSummaryStandardsVOEnergyTypeEnum = {
18
+ Electric: 'ELECTRIC',
19
+ Water: 'WATER'
20
+ };
21
+ exports.EnergyCostMonthSettingListSummaryStandardsVOUsageScenariosTypeEnum = {
22
+ ColdStorage: 'COLD_STORAGE',
23
+ SmartWarehouse: 'SMART_WAREHOUSE',
24
+ LeasingTenant: 'LEASING_TENANT',
25
+ PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
26
+ };