@gizone/rrs-client 4.2.9-alpha.677 → 4.2.9-alpha.678
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 +2 -0
- package/apis/energy-cost-analysis-controller-api.ts +92 -24
- package/dist/apis/energy-cost-analysis-controller-api.d.ts +40 -10
- package/dist/apis/energy-cost-analysis-controller-api.js +84 -22
- package/dist/esm/apis/energy-cost-analysis-controller-api.d.ts +40 -10
- package/dist/esm/apis/energy-cost-analysis-controller-api.js +84 -22
- package/dist/esm/models/energy-cost-analysis-query-dto.d.ts +2 -2
- package/dist/esm/models/index.d.ts +2 -0
- package/dist/esm/models/index.js +2 -0
- package/dist/esm/models/json-result-list-park-select-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-park-select-vo.js +14 -0
- package/dist/esm/models/park-select-vo.d.ts +30 -0
- package/dist/esm/models/park-select-vo.js +14 -0
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/models/energy-cost-analysis-query-dto.d.ts +2 -2
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/json-result-list-park-select-vo.d.ts +62 -0
- package/dist/models/json-result-list-park-select-vo.js +15 -0
- package/dist/models/park-select-vo.d.ts +30 -0
- package/dist/models/park-select-vo.js +15 -0
- package/dist/models/sys-user.d.ts +4 -4
- package/models/energy-cost-analysis-query-dto.ts +2 -2
- package/models/index.ts +2 -0
- package/models/json-result-list-park-select-vo.ts +72 -0
- package/models/park-select-vo.ts +36 -0
- package/models/sys-user.ts +4 -4
- package/ossutil.log +1221 -1221
- package/package.json +1 -1
|
@@ -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 { ParkSelectVO } from './park-select-vo';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultListParkSelectVO
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultListParkSelectVO {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultListParkSelectVO
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultListParkSelectVO
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultListParkSelectVO
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 返回数据,可以是任意类型的值
|
|
40
|
+
* @type {Array<ParkSelectVO>}
|
|
41
|
+
* @memberof JsonResultListParkSelectVO
|
|
42
|
+
*/
|
|
43
|
+
'data'?: Array<ParkSelectVO> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultListParkSelectVO
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultListParkSelectVO
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultListParkSelectVO
|
|
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,30 @@
|
|
|
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
|
+
* 园区下拉选项VO
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ParkSelectVO
|
|
16
|
+
*/
|
|
17
|
+
export interface ParkSelectVO {
|
|
18
|
+
/**
|
|
19
|
+
* 园区id
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof ParkSelectVO
|
|
22
|
+
*/
|
|
23
|
+
'deptId'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* 园区名称
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ParkSelectVO
|
|
28
|
+
*/
|
|
29
|
+
'deptName'?: string;
|
|
30
|
+
}
|
|
@@ -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 {number}
|
|
381
381
|
* @memberof SysUser
|
|
382
382
|
*/
|
|
383
|
-
'
|
|
383
|
+
'cuserId'?: number;
|
|
384
384
|
/**
|
|
385
385
|
*
|
|
386
|
-
* @type {
|
|
386
|
+
* @type {string}
|
|
387
387
|
* @memberof SysUser
|
|
388
388
|
*/
|
|
389
|
-
'
|
|
389
|
+
'cid'?: string;
|
|
390
390
|
}
|
|
@@ -70,10 +70,10 @@ export interface EnergyCostAnalysisQueryDTO {
|
|
|
70
70
|
'plannedEndTime'?: number;
|
|
71
71
|
/**
|
|
72
72
|
* 账单月,格式:yyyy-MM
|
|
73
|
-
* @type {string}
|
|
73
|
+
* @type {Array<string>}
|
|
74
74
|
* @memberof EnergyCostAnalysisQueryDTO
|
|
75
75
|
*/
|
|
76
|
-
'
|
|
76
|
+
'billMonths': Array<string>;
|
|
77
77
|
/**
|
|
78
78
|
* 能源类型列表
|
|
79
79
|
* @type {Array<string>}
|
package/models/index.ts
CHANGED
|
@@ -294,6 +294,7 @@ export * from './json-result-list-maintenance-standard-entity';
|
|
|
294
294
|
export * from './json-result-list-mdm-increment-vendor-bank-accounts-vo';
|
|
295
295
|
export * from './json-result-list-mdm-increment-vendors-vo';
|
|
296
296
|
export * from './json-result-list-park-list-dto';
|
|
297
|
+
export * from './json-result-list-park-select-vo';
|
|
297
298
|
export * from './json-result-list-plan-calendar-list-vo';
|
|
298
299
|
export * from './json-result-list-plan-calendar-vo';
|
|
299
300
|
export * from './json-result-list-reimbursement-bill-payer-vo';
|
|
@@ -453,6 +454,7 @@ export * from './park-info-edit-vo';
|
|
|
453
454
|
export * from './park-list-dto';
|
|
454
455
|
export * from './park-plat-form-enum';
|
|
455
456
|
export * from './park-push-settings-add-bo';
|
|
457
|
+
export * from './park-select-vo';
|
|
456
458
|
export * from './park-settings-details-dto';
|
|
457
459
|
export * from './park-settings-vo';
|
|
458
460
|
export * from './payment-method-enum';
|
|
@@ -0,0 +1,72 @@
|
|
|
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
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { ParkSelectVO } from './park-select-vo';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultListParkSelectVO
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultListParkSelectVO {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultListParkSelectVO
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultListParkSelectVO
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultListParkSelectVO
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* 返回数据,可以是任意类型的值
|
|
49
|
+
* @type {Array<ParkSelectVO>}
|
|
50
|
+
* @memberof JsonResultListParkSelectVO
|
|
51
|
+
*/
|
|
52
|
+
'data'?: Array<ParkSelectVO> | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultListParkSelectVO
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultListParkSelectVO
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultListParkSelectVO
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
* 园区下拉选项VO
|
|
19
|
+
* @export
|
|
20
|
+
* @interface ParkSelectVO
|
|
21
|
+
*/
|
|
22
|
+
export interface ParkSelectVO {
|
|
23
|
+
/**
|
|
24
|
+
* 园区id
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof ParkSelectVO
|
|
27
|
+
*/
|
|
28
|
+
'deptId'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* 园区名称
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ParkSelectVO
|
|
33
|
+
*/
|
|
34
|
+
'deptName'?: string;
|
|
35
|
+
}
|
|
36
|
+
|
package/models/sys-user.ts
CHANGED
|
@@ -388,16 +388,16 @@ export interface SysUser {
|
|
|
388
388
|
'sourceUserId'?: string;
|
|
389
389
|
/**
|
|
390
390
|
*
|
|
391
|
-
* @type {
|
|
391
|
+
* @type {number}
|
|
392
392
|
* @memberof SysUser
|
|
393
393
|
*/
|
|
394
|
-
'
|
|
394
|
+
'cuserId'?: number;
|
|
395
395
|
/**
|
|
396
396
|
*
|
|
397
|
-
* @type {
|
|
397
|
+
* @type {string}
|
|
398
398
|
* @memberof SysUser
|
|
399
399
|
*/
|
|
400
|
-
'
|
|
400
|
+
'cid'?: string;
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
|