@gizone/rrs-client 4.2.9-alpha.598 → 4.2.9-alpha.601

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.
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { EnergyCostScenariosInfoNotEnumVO } from './energy-cost-scenarios-info-not-enum-vo';
13
+ import type { PricingItem } from './pricing-item';
13
14
  /**
14
15
  * 返回数据,可以是任意类型的值
15
16
  * @export
@@ -208,6 +209,12 @@ export interface EnergyCostRecordInfoNotEmunVO {
208
209
  * @memberof EnergyCostRecordInfoNotEmunVO
209
210
  */
210
211
  'lastTotalVacantArea'?: number;
212
+ /**
213
+ * 尖峰平谷信息
214
+ * @type {Array<PricingItem>}
215
+ * @memberof EnergyCostRecordInfoNotEmunVO
216
+ */
217
+ 'pricingItem'?: Array<PricingItem>;
211
218
  /**
212
219
  *
213
220
  * @type {Array<EnergyCostScenariosInfoNotEnumVO>}
@@ -34,12 +34,6 @@ export interface IPageEnergyCostRecordInfoVO {
34
34
  * @memberof IPageEnergyCostRecordInfoVO
35
35
  */
36
36
  'records'?: Array<EnergyCostRecordInfoVO>;
37
- /**
38
- *
39
- * @type {boolean}
40
- * @memberof IPageEnergyCostRecordInfoVO
41
- */
42
- 'searchCount'?: boolean;
43
37
  /**
44
38
  *
45
39
  * @type {number}
@@ -53,6 +47,12 @@ export interface IPageEnergyCostRecordInfoVO {
53
47
  * @deprecated
54
48
  */
55
49
  'hitCount'?: boolean;
50
+ /**
51
+ *
52
+ * @type {boolean}
53
+ * @memberof IPageEnergyCostRecordInfoVO
54
+ */
55
+ 'searchCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -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
  }
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { EnergyCostScenariosInfoNotEnumVO } from './energy-cost-scenarios-info-not-enum-vo';
13
+ import type { PricingItem } from './pricing-item';
13
14
  /**
14
15
  * 返回数据,可以是任意类型的值
15
16
  * @export
@@ -208,6 +209,12 @@ export interface EnergyCostRecordInfoNotEmunVO {
208
209
  * @memberof EnergyCostRecordInfoNotEmunVO
209
210
  */
210
211
  'lastTotalVacantArea'?: number;
212
+ /**
213
+ * 尖峰平谷信息
214
+ * @type {Array<PricingItem>}
215
+ * @memberof EnergyCostRecordInfoNotEmunVO
216
+ */
217
+ 'pricingItem'?: Array<PricingItem>;
211
218
  /**
212
219
  *
213
220
  * @type {Array<EnergyCostScenariosInfoNotEnumVO>}
@@ -34,12 +34,6 @@ export interface IPageEnergyCostRecordInfoVO {
34
34
  * @memberof IPageEnergyCostRecordInfoVO
35
35
  */
36
36
  'records'?: Array<EnergyCostRecordInfoVO>;
37
- /**
38
- *
39
- * @type {boolean}
40
- * @memberof IPageEnergyCostRecordInfoVO
41
- */
42
- 'searchCount'?: boolean;
43
37
  /**
44
38
  *
45
39
  * @type {number}
@@ -53,6 +47,12 @@ export interface IPageEnergyCostRecordInfoVO {
53
47
  * @deprecated
54
48
  */
55
49
  'hitCount'?: boolean;
50
+ /**
51
+ *
52
+ * @type {boolean}
53
+ * @memberof IPageEnergyCostRecordInfoVO
54
+ */
55
+ 'searchCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -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
  }
@@ -16,6 +16,9 @@
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
18
  import type { EnergyCostScenariosInfoNotEnumVO } from './energy-cost-scenarios-info-not-enum-vo';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { PricingItem } from './pricing-item';
19
22
 
20
23
  /**
21
24
  * 返回数据,可以是任意类型的值
@@ -215,6 +218,12 @@ export interface EnergyCostRecordInfoNotEmunVO {
215
218
  * @memberof EnergyCostRecordInfoNotEmunVO
216
219
  */
217
220
  'lastTotalVacantArea'?: number;
221
+ /**
222
+ * 尖峰平谷信息
223
+ * @type {Array<PricingItem>}
224
+ * @memberof EnergyCostRecordInfoNotEmunVO
225
+ */
226
+ 'pricingItem'?: Array<PricingItem>;
218
227
  /**
219
228
  *
220
229
  * @type {Array<EnergyCostScenariosInfoNotEnumVO>}
@@ -41,12 +41,6 @@ export interface IPageEnergyCostRecordInfoVO {
41
41
  * @memberof IPageEnergyCostRecordInfoVO
42
42
  */
43
43
  'records'?: Array<EnergyCostRecordInfoVO>;
44
- /**
45
- *
46
- * @type {boolean}
47
- * @memberof IPageEnergyCostRecordInfoVO
48
- */
49
- 'searchCount'?: boolean;
50
44
  /**
51
45
  *
52
46
  * @type {number}
@@ -60,6 +54,12 @@ export interface IPageEnergyCostRecordInfoVO {
60
54
  * @deprecated
61
55
  */
62
56
  'hitCount'?: boolean;
57
+ /**
58
+ *
59
+ * @type {boolean}
60
+ * @memberof IPageEnergyCostRecordInfoVO
61
+ */
62
+ 'searchCount'?: boolean;
63
63
  /**
64
64
  *
65
65
  * @type {number}
@@ -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