@gizone/rrs-client 4.2.9-alpha.676 → 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/ipage-energy-cost-record-info-vo.d.ts +4 -4
- 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/maintenance-order-details-vo.d.ts +12 -0
- package/dist/esm/models/maintenance-order-list-vo.d.ts +12 -0
- package/dist/esm/models/park-select-vo.d.ts +30 -0
- package/dist/esm/models/park-select-vo.js +14 -0
- 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/ipage-energy-cost-record-info-vo.d.ts +4 -4
- 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/maintenance-order-details-vo.d.ts +12 -0
- package/dist/models/maintenance-order-list-vo.d.ts +12 -0
- package/dist/models/park-select-vo.d.ts +30 -0
- package/dist/models/park-select-vo.js +15 -0
- package/models/energy-cost-analysis-query-dto.ts +2 -2
- package/models/index.ts +2 -0
- package/models/ipage-energy-cost-record-info-vo.ts +4 -4
- package/models/json-result-list-park-select-vo.ts +72 -0
- package/models/maintenance-order-details-vo.ts +12 -0
- package/models/maintenance-order-list-vo.ts +12 -0
- package/models/park-select-vo.ts +36 -0
- package/ossutil.log +1221 -1221
- package/package.json +1 -1
|
@@ -36,16 +36,16 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
36
36
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {number}
|
|
40
40
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'pages'?: number;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
|
-
* @type {
|
|
45
|
+
* @type {boolean}
|
|
46
46
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
47
|
*/
|
|
48
|
-
'
|
|
48
|
+
'searchCount'?: boolean;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
51
|
* @type {boolean}
|
|
@@ -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 });
|
|
@@ -144,6 +144,18 @@ export interface MaintenanceOrderDetailsVo {
|
|
|
144
144
|
* @memberof MaintenanceOrderDetailsVo
|
|
145
145
|
*/
|
|
146
146
|
'completeTime'?: string;
|
|
147
|
+
/**
|
|
148
|
+
* 当前处理人
|
|
149
|
+
* @type {number}
|
|
150
|
+
* @memberof MaintenanceOrderDetailsVo
|
|
151
|
+
*/
|
|
152
|
+
'handlerUserId'?: number;
|
|
153
|
+
/**
|
|
154
|
+
* 处理人名称
|
|
155
|
+
* @type {string}
|
|
156
|
+
* @memberof MaintenanceOrderDetailsVo
|
|
157
|
+
*/
|
|
158
|
+
'handlerUserName'?: string;
|
|
147
159
|
/**
|
|
148
160
|
*
|
|
149
161
|
* @type {MaintenanceOrderConstructionDetailsVo}
|
|
@@ -107,4 +107,16 @@ export interface MaintenanceOrderListVo {
|
|
|
107
107
|
* @memberof MaintenanceOrderListVo
|
|
108
108
|
*/
|
|
109
109
|
'createUserName'?: string;
|
|
110
|
+
/**
|
|
111
|
+
* 当前处理人
|
|
112
|
+
* @type {number}
|
|
113
|
+
* @memberof MaintenanceOrderListVo
|
|
114
|
+
*/
|
|
115
|
+
'handlerUserId'?: number;
|
|
116
|
+
/**
|
|
117
|
+
* 处理人名称
|
|
118
|
+
* @type {string}
|
|
119
|
+
* @memberof MaintenanceOrderListVo
|
|
120
|
+
*/
|
|
121
|
+
'handlerUserName'?: string;
|
|
110
122
|
}
|
|
@@ -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 });
|
|
@@ -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';
|
|
@@ -43,16 +43,16 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
43
43
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @type {
|
|
46
|
+
* @type {number}
|
|
47
47
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'pages'?: number;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {boolean}
|
|
53
53
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {boolean}
|
|
@@ -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
|
+
|
|
@@ -167,6 +167,18 @@ export interface MaintenanceOrderDetailsVo {
|
|
|
167
167
|
* @memberof MaintenanceOrderDetailsVo
|
|
168
168
|
*/
|
|
169
169
|
'completeTime'?: string;
|
|
170
|
+
/**
|
|
171
|
+
* 当前处理人
|
|
172
|
+
* @type {number}
|
|
173
|
+
* @memberof MaintenanceOrderDetailsVo
|
|
174
|
+
*/
|
|
175
|
+
'handlerUserId'?: number;
|
|
176
|
+
/**
|
|
177
|
+
* 处理人名称
|
|
178
|
+
* @type {string}
|
|
179
|
+
* @memberof MaintenanceOrderDetailsVo
|
|
180
|
+
*/
|
|
181
|
+
'handlerUserName'?: string;
|
|
170
182
|
/**
|
|
171
183
|
*
|
|
172
184
|
* @type {MaintenanceOrderConstructionDetailsVo}
|
|
@@ -116,6 +116,18 @@ export interface MaintenanceOrderListVo {
|
|
|
116
116
|
* @memberof MaintenanceOrderListVo
|
|
117
117
|
*/
|
|
118
118
|
'createUserName'?: string;
|
|
119
|
+
/**
|
|
120
|
+
* 当前处理人
|
|
121
|
+
* @type {number}
|
|
122
|
+
* @memberof MaintenanceOrderListVo
|
|
123
|
+
*/
|
|
124
|
+
'handlerUserId'?: number;
|
|
125
|
+
/**
|
|
126
|
+
* 处理人名称
|
|
127
|
+
* @type {string}
|
|
128
|
+
* @memberof MaintenanceOrderListVo
|
|
129
|
+
*/
|
|
130
|
+
'handlerUserName'?: string;
|
|
119
131
|
}
|
|
120
132
|
|
|
121
133
|
|
|
@@ -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
|
+
|