@gizone/rrs-client 4.2.9-alpha.611 → 4.2.9-alpha.613

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.
@@ -80,10 +80,17 @@ export interface EnergyCostAnalysisQueryDTO {
80
80
  * @type {Array<string>}
81
81
  * @memberof EnergyCostAnalysisQueryDTO
82
82
  */
83
- 'billSource'?: Array<string>;
83
+ 'scenarios'?: Array<EnergyCostAnalysisQueryDTOScenariosEnum>;
84
84
  }
85
85
  export declare const EnergyCostAnalysisQueryDTOEnergyTypesEnum: {
86
86
  readonly Electric: "ELECTRIC";
87
87
  readonly Water: "WATER";
88
88
  };
89
89
  export type EnergyCostAnalysisQueryDTOEnergyTypesEnum = typeof EnergyCostAnalysisQueryDTOEnergyTypesEnum[keyof typeof EnergyCostAnalysisQueryDTOEnergyTypesEnum];
90
+ export declare const EnergyCostAnalysisQueryDTOScenariosEnum: {
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 EnergyCostAnalysisQueryDTOScenariosEnum = typeof EnergyCostAnalysisQueryDTOScenariosEnum[keyof typeof EnergyCostAnalysisQueryDTOScenariosEnum];
@@ -15,3 +15,9 @@ export const EnergyCostAnalysisQueryDTOEnergyTypesEnum = {
15
15
  Electric: 'ELECTRIC',
16
16
  Water: 'WATER'
17
17
  };
18
+ export const EnergyCostAnalysisQueryDTOScenariosEnum = {
19
+ ColdStorage: 'COLD_STORAGE',
20
+ SmartWarehouse: 'SMART_WAREHOUSE',
21
+ LeasingTenant: 'LEASING_TENANT',
22
+ PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
23
+ };
@@ -22,12 +22,6 @@ export interface IPageEnergyCostRecordInfoVO {
22
22
  * @memberof IPageEnergyCostRecordInfoVO
23
23
  */
24
24
  'total'?: number;
25
- /**
26
- *
27
- * @type {number}
28
- * @memberof IPageEnergyCostRecordInfoVO
29
- */
30
- 'current'?: number;
31
25
  /**
32
26
  *
33
27
  * @type {Array<EnergyCostRecordInfoVO>}
@@ -39,13 +33,19 @@ export interface IPageEnergyCostRecordInfoVO {
39
33
  * @type {number}
40
34
  * @memberof IPageEnergyCostRecordInfoVO
41
35
  */
42
- 'pages'?: number;
36
+ 'current'?: number;
43
37
  /**
44
38
  *
45
39
  * @type {boolean}
46
40
  * @memberof IPageEnergyCostRecordInfoVO
47
41
  */
48
42
  'searchCount'?: boolean;
43
+ /**
44
+ *
45
+ * @type {number}
46
+ * @memberof IPageEnergyCostRecordInfoVO
47
+ */
48
+ 'pages'?: number;
49
49
  /**
50
50
  *
51
51
  * @type {boolean}
@@ -377,14 +377,14 @@ export interface SysUser {
377
377
  'sourceUserId'?: string;
378
378
  /**
379
379
  *
380
- * @type {string}
380
+ * @type {number}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cid'?: string;
383
+ 'cuserId'?: number;
384
384
  /**
385
385
  *
386
- * @type {number}
386
+ * @type {string}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cuserId'?: number;
389
+ 'cid'?: string;
390
390
  }
@@ -80,10 +80,17 @@ export interface EnergyCostAnalysisQueryDTO {
80
80
  * @type {Array<string>}
81
81
  * @memberof EnergyCostAnalysisQueryDTO
82
82
  */
83
- 'billSource'?: Array<string>;
83
+ 'scenarios'?: Array<EnergyCostAnalysisQueryDTOScenariosEnum>;
84
84
  }
85
85
  export declare const EnergyCostAnalysisQueryDTOEnergyTypesEnum: {
86
86
  readonly Electric: "ELECTRIC";
87
87
  readonly Water: "WATER";
88
88
  };
89
89
  export type EnergyCostAnalysisQueryDTOEnergyTypesEnum = typeof EnergyCostAnalysisQueryDTOEnergyTypesEnum[keyof typeof EnergyCostAnalysisQueryDTOEnergyTypesEnum];
90
+ export declare const EnergyCostAnalysisQueryDTOScenariosEnum: {
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 EnergyCostAnalysisQueryDTOScenariosEnum = typeof EnergyCostAnalysisQueryDTOScenariosEnum[keyof typeof EnergyCostAnalysisQueryDTOScenariosEnum];
@@ -13,8 +13,14 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.EnergyCostAnalysisQueryDTOEnergyTypesEnum = void 0;
16
+ exports.EnergyCostAnalysisQueryDTOScenariosEnum = exports.EnergyCostAnalysisQueryDTOEnergyTypesEnum = void 0;
17
17
  exports.EnergyCostAnalysisQueryDTOEnergyTypesEnum = {
18
18
  Electric: 'ELECTRIC',
19
19
  Water: 'WATER'
20
20
  };
21
+ exports.EnergyCostAnalysisQueryDTOScenariosEnum = {
22
+ ColdStorage: 'COLD_STORAGE',
23
+ SmartWarehouse: 'SMART_WAREHOUSE',
24
+ LeasingTenant: 'LEASING_TENANT',
25
+ PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
26
+ };
@@ -22,12 +22,6 @@ export interface IPageEnergyCostRecordInfoVO {
22
22
  * @memberof IPageEnergyCostRecordInfoVO
23
23
  */
24
24
  'total'?: number;
25
- /**
26
- *
27
- * @type {number}
28
- * @memberof IPageEnergyCostRecordInfoVO
29
- */
30
- 'current'?: number;
31
25
  /**
32
26
  *
33
27
  * @type {Array<EnergyCostRecordInfoVO>}
@@ -39,13 +33,19 @@ export interface IPageEnergyCostRecordInfoVO {
39
33
  * @type {number}
40
34
  * @memberof IPageEnergyCostRecordInfoVO
41
35
  */
42
- 'pages'?: number;
36
+ 'current'?: number;
43
37
  /**
44
38
  *
45
39
  * @type {boolean}
46
40
  * @memberof IPageEnergyCostRecordInfoVO
47
41
  */
48
42
  'searchCount'?: boolean;
43
+ /**
44
+ *
45
+ * @type {number}
46
+ * @memberof IPageEnergyCostRecordInfoVO
47
+ */
48
+ 'pages'?: number;
49
49
  /**
50
50
  *
51
51
  * @type {boolean}
@@ -377,14 +377,14 @@ export interface SysUser {
377
377
  'sourceUserId'?: string;
378
378
  /**
379
379
  *
380
- * @type {string}
380
+ * @type {number}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cid'?: string;
383
+ 'cuserId'?: number;
384
384
  /**
385
385
  *
386
- * @type {number}
386
+ * @type {string}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cuserId'?: number;
389
+ 'cid'?: string;
390
390
  }
@@ -85,7 +85,7 @@ export interface EnergyCostAnalysisQueryDTO {
85
85
  * @type {Array<string>}
86
86
  * @memberof EnergyCostAnalysisQueryDTO
87
87
  */
88
- 'billSource'?: Array<string>;
88
+ 'scenarios'?: Array<EnergyCostAnalysisQueryDTOScenariosEnum>;
89
89
  }
90
90
 
91
91
  export const EnergyCostAnalysisQueryDTOEnergyTypesEnum = {
@@ -94,5 +94,13 @@ export const EnergyCostAnalysisQueryDTOEnergyTypesEnum = {
94
94
  } as const;
95
95
 
96
96
  export type EnergyCostAnalysisQueryDTOEnergyTypesEnum = typeof EnergyCostAnalysisQueryDTOEnergyTypesEnum[keyof typeof EnergyCostAnalysisQueryDTOEnergyTypesEnum];
97
+ export const EnergyCostAnalysisQueryDTOScenariosEnum = {
98
+ ColdStorage: 'COLD_STORAGE',
99
+ SmartWarehouse: 'SMART_WAREHOUSE',
100
+ LeasingTenant: 'LEASING_TENANT',
101
+ PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
102
+ } as const;
103
+
104
+ export type EnergyCostAnalysisQueryDTOScenariosEnum = typeof EnergyCostAnalysisQueryDTOScenariosEnum[keyof typeof EnergyCostAnalysisQueryDTOScenariosEnum];
97
105
 
98
106
 
@@ -29,12 +29,6 @@ export interface IPageEnergyCostRecordInfoVO {
29
29
  * @memberof IPageEnergyCostRecordInfoVO
30
30
  */
31
31
  'total'?: number;
32
- /**
33
- *
34
- * @type {number}
35
- * @memberof IPageEnergyCostRecordInfoVO
36
- */
37
- 'current'?: number;
38
32
  /**
39
33
  *
40
34
  * @type {Array<EnergyCostRecordInfoVO>}
@@ -46,13 +40,19 @@ export interface IPageEnergyCostRecordInfoVO {
46
40
  * @type {number}
47
41
  * @memberof IPageEnergyCostRecordInfoVO
48
42
  */
49
- 'pages'?: number;
43
+ 'current'?: number;
50
44
  /**
51
45
  *
52
46
  * @type {boolean}
53
47
  * @memberof IPageEnergyCostRecordInfoVO
54
48
  */
55
49
  'searchCount'?: boolean;
50
+ /**
51
+ *
52
+ * @type {number}
53
+ * @memberof IPageEnergyCostRecordInfoVO
54
+ */
55
+ 'pages'?: number;
56
56
  /**
57
57
  *
58
58
  * @type {boolean}
@@ -388,16 +388,16 @@ export interface SysUser {
388
388
  'sourceUserId'?: string;
389
389
  /**
390
390
  *
391
- * @type {string}
391
+ * @type {number}
392
392
  * @memberof SysUser
393
393
  */
394
- 'cid'?: string;
394
+ 'cuserId'?: number;
395
395
  /**
396
396
  *
397
- * @type {number}
397
+ * @type {string}
398
398
  * @memberof SysUser
399
399
  */
400
- 'cuserId'?: number;
400
+ 'cid'?: string;
401
401
  }
402
402
 
403
403