@gizone/rrs-client 4.2.9-alpha.661 → 4.2.9-alpha.662
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 +7 -0
- package/apis/reimbursement-bill-api.ts +93 -0
- package/dist/apis/reimbursement-bill-api.d.ts +48 -0
- package/dist/apis/reimbursement-bill-api.js +70 -0
- package/dist/esm/apis/reimbursement-bill-api.d.ts +48 -0
- package/dist/esm/apis/reimbursement-bill-api.js +70 -0
- package/dist/esm/models/filter-condition.d.ts +30 -0
- package/dist/esm/models/filter-condition.js +14 -0
- package/dist/esm/models/index.d.ts +7 -0
- package/dist/esm/models/index.js +7 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +3 -3
- package/dist/esm/models/json-result-zjht-contract-data-result.d.ts +62 -0
- package/dist/esm/models/json-result-zjht-contract-data-result.js +14 -0
- package/dist/esm/models/zjht-contract-data-result.d.ts +31 -0
- package/dist/esm/models/zjht-contract-data-result.js +14 -0
- package/dist/esm/models/zjht-contract-detail.d.ts +30 -0
- package/dist/esm/models/zjht-contract-detail.js +14 -0
- package/dist/esm/models/zjht-contract.d.ts +25 -0
- package/dist/esm/models/zjht-contract.js +14 -0
- package/dist/esm/models/zjht-search-dto-filter.d.ts +31 -0
- package/dist/esm/models/zjht-search-dto-filter.js +14 -0
- package/dist/esm/models/zjht-search-dto.d.ts +55 -0
- package/dist/esm/models/zjht-search-dto.js +14 -0
- package/dist/models/filter-condition.d.ts +30 -0
- package/dist/models/filter-condition.js +15 -0
- package/dist/models/index.d.ts +7 -0
- package/dist/models/index.js +7 -0
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +3 -3
- package/dist/models/json-result-zjht-contract-data-result.d.ts +62 -0
- package/dist/models/json-result-zjht-contract-data-result.js +15 -0
- package/dist/models/zjht-contract-data-result.d.ts +31 -0
- package/dist/models/zjht-contract-data-result.js +15 -0
- package/dist/models/zjht-contract-detail.d.ts +30 -0
- package/dist/models/zjht-contract-detail.js +15 -0
- package/dist/models/zjht-contract.d.ts +25 -0
- package/dist/models/zjht-contract.js +15 -0
- package/dist/models/zjht-search-dto-filter.d.ts +31 -0
- package/dist/models/zjht-search-dto-filter.js +15 -0
- package/dist/models/zjht-search-dto.d.ts +55 -0
- package/dist/models/zjht-search-dto.js +15 -0
- package/models/filter-condition.ts +36 -0
- package/models/index.ts +7 -0
- package/models/ipage-energy-cost-record-info-vo.ts +3 -3
- package/models/json-result-zjht-contract-data-result.ts +72 -0
- package/models/zjht-contract-data-result.ts +39 -0
- package/models/zjht-contract-detail.ts +36 -0
- package/models/zjht-contract.ts +33 -0
- package/models/zjht-search-dto-filter.ts +39 -0
- package/models/zjht-search-dto.ts +63 -0
- package/ossutil.log +1194 -1194
- 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 { ZjhtContractDataResult } from './zjht-contract-data-result';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultZjhtContractDataResult
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultZjhtContractDataResult {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {ZjhtContractDataResult}
|
|
41
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
42
|
+
*/
|
|
43
|
+
'data'?: ZjhtContractDataResult | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
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 {};
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { ZjhtContract } from './zjht-contract';
|
|
13
|
+
/**
|
|
14
|
+
* 智家合同列表
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ZjhtContractDataResult
|
|
17
|
+
*/
|
|
18
|
+
export interface ZjhtContractDataResult {
|
|
19
|
+
/**
|
|
20
|
+
* 数量
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof ZjhtContractDataResult
|
|
23
|
+
*/
|
|
24
|
+
'count'?: number;
|
|
25
|
+
/**
|
|
26
|
+
* 合同
|
|
27
|
+
* @type {Array<ZjhtContract>}
|
|
28
|
+
* @memberof ZjhtContractDataResult
|
|
29
|
+
*/
|
|
30
|
+
'contractList'?: Array<ZjhtContract>;
|
|
31
|
+
}
|
|
@@ -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 {};
|
|
@@ -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
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ZjhtContractDetail
|
|
16
|
+
*/
|
|
17
|
+
export interface ZjhtContractDetail {
|
|
18
|
+
/**
|
|
19
|
+
* 合同名称
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ZjhtContractDetail
|
|
22
|
+
*/
|
|
23
|
+
'contractName_haier'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* 合同编码
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ZjhtContractDetail
|
|
28
|
+
*/
|
|
29
|
+
'contractNumber_haier'?: string;
|
|
30
|
+
}
|
|
@@ -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 {};
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { ZjhtContractDetail } from './zjht-contract-detail';
|
|
13
|
+
/**
|
|
14
|
+
* 合同
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ZjhtContract
|
|
17
|
+
*/
|
|
18
|
+
export interface ZjhtContract {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {ZjhtContractDetail}
|
|
22
|
+
* @memberof ZjhtContract
|
|
23
|
+
*/
|
|
24
|
+
'contract'?: ZjhtContractDetail;
|
|
25
|
+
}
|
|
@@ -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 {};
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { FilterCondition } from './filter-condition';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ZjhtSearchDtoFilter
|
|
17
|
+
*/
|
|
18
|
+
export interface ZjhtSearchDtoFilter {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof ZjhtSearchDtoFilter
|
|
23
|
+
*/
|
|
24
|
+
'id'?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {FilterCondition}
|
|
28
|
+
* @memberof ZjhtSearchDtoFilter
|
|
29
|
+
*/
|
|
30
|
+
'condition'?: FilterCondition;
|
|
31
|
+
}
|
|
@@ -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 {};
|
|
@@ -0,0 +1,55 @@
|
|
|
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 { ZjhtSearchDtoFilter } from './zjht-search-dto-filter';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ZjhtSearchDto
|
|
17
|
+
*/
|
|
18
|
+
export interface ZjhtSearchDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof ZjhtSearchDto
|
|
23
|
+
*/
|
|
24
|
+
'pageNum'?: number;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof ZjhtSearchDto
|
|
29
|
+
*/
|
|
30
|
+
'pageSize'?: number;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<string>}
|
|
34
|
+
* @memberof ZjhtSearchDto
|
|
35
|
+
*/
|
|
36
|
+
'ids'?: Array<string>;
|
|
37
|
+
/**
|
|
38
|
+
* 用户工号
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ZjhtSearchDto
|
|
41
|
+
*/
|
|
42
|
+
'username'?: string;
|
|
43
|
+
/**
|
|
44
|
+
* 合同编号
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof ZjhtSearchDto
|
|
47
|
+
*/
|
|
48
|
+
'contractNo'?: string;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {Array<ZjhtSearchDtoFilter>}
|
|
52
|
+
* @memberof ZjhtSearchDto
|
|
53
|
+
*/
|
|
54
|
+
'filterList'?: Array<ZjhtSearchDtoFilter>;
|
|
55
|
+
}
|
|
@@ -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 {};
|
|
@@ -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
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface FilterCondition
|
|
16
|
+
*/
|
|
17
|
+
export interface FilterCondition {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof FilterCondition
|
|
22
|
+
*/
|
|
23
|
+
'searchWord'?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {Array<number>}
|
|
27
|
+
* @memberof FilterCondition
|
|
28
|
+
*/
|
|
29
|
+
'in'?: Array<number>;
|
|
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 });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -184,6 +184,7 @@ export * from './exploration-work-order-info';
|
|
|
184
184
|
export * from './exploration-work-order-submit-vo';
|
|
185
185
|
export * from './exploration-work-order-type-enum';
|
|
186
186
|
export * from './file-dto';
|
|
187
|
+
export * from './filter-condition';
|
|
187
188
|
export * from './followup-work-order-dto';
|
|
188
189
|
export * from './functional-area-enum';
|
|
189
190
|
export * from './fusion-role-request-dto';
|
|
@@ -372,6 +373,7 @@ export * from './json-result-void';
|
|
|
372
373
|
export * from './json-result-work-order-dept-settings-entity';
|
|
373
374
|
export * from './json-result-work-order-detail-dto';
|
|
374
375
|
export * from './json-result-work-order-issue-type-settings-entity';
|
|
376
|
+
export * from './json-result-zjht-contract-data-result';
|
|
375
377
|
export * from './login-body';
|
|
376
378
|
export * from './login-type-enum';
|
|
377
379
|
export * from './maintenace-daily-abnormal-cause-type-enum';
|
|
@@ -661,3 +663,8 @@ export * from './wx-mp-get-self-menu-info-result';
|
|
|
661
663
|
export * from './wx-mp-menu';
|
|
662
664
|
export * from './wx-mp-self-menu-button';
|
|
663
665
|
export * from './wx-mp-self-menu-info';
|
|
666
|
+
export * from './zjht-contract';
|
|
667
|
+
export * from './zjht-contract-data-result';
|
|
668
|
+
export * from './zjht-contract-detail';
|
|
669
|
+
export * from './zjht-search-dto';
|
|
670
|
+
export * from './zjht-search-dto-filter';
|
package/dist/models/index.js
CHANGED
|
@@ -200,6 +200,7 @@ __exportStar(require("./exploration-work-order-info"), exports);
|
|
|
200
200
|
__exportStar(require("./exploration-work-order-submit-vo"), exports);
|
|
201
201
|
__exportStar(require("./exploration-work-order-type-enum"), exports);
|
|
202
202
|
__exportStar(require("./file-dto"), exports);
|
|
203
|
+
__exportStar(require("./filter-condition"), exports);
|
|
203
204
|
__exportStar(require("./followup-work-order-dto"), exports);
|
|
204
205
|
__exportStar(require("./functional-area-enum"), exports);
|
|
205
206
|
__exportStar(require("./fusion-role-request-dto"), exports);
|
|
@@ -388,6 +389,7 @@ __exportStar(require("./json-result-void"), exports);
|
|
|
388
389
|
__exportStar(require("./json-result-work-order-dept-settings-entity"), exports);
|
|
389
390
|
__exportStar(require("./json-result-work-order-detail-dto"), exports);
|
|
390
391
|
__exportStar(require("./json-result-work-order-issue-type-settings-entity"), exports);
|
|
392
|
+
__exportStar(require("./json-result-zjht-contract-data-result"), exports);
|
|
391
393
|
__exportStar(require("./login-body"), exports);
|
|
392
394
|
__exportStar(require("./login-type-enum"), exports);
|
|
393
395
|
__exportStar(require("./maintenace-daily-abnormal-cause-type-enum"), exports);
|
|
@@ -677,3 +679,8 @@ __exportStar(require("./wx-mp-get-self-menu-info-result"), exports);
|
|
|
677
679
|
__exportStar(require("./wx-mp-menu"), exports);
|
|
678
680
|
__exportStar(require("./wx-mp-self-menu-button"), exports);
|
|
679
681
|
__exportStar(require("./wx-mp-self-menu-info"), exports);
|
|
682
|
+
__exportStar(require("./zjht-contract"), exports);
|
|
683
|
+
__exportStar(require("./zjht-contract-data-result"), exports);
|
|
684
|
+
__exportStar(require("./zjht-contract-detail"), exports);
|
|
685
|
+
__exportStar(require("./zjht-search-dto"), exports);
|
|
686
|
+
__exportStar(require("./zjht-search-dto-filter"), exports);
|
|
@@ -44,15 +44,15 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
44
44
|
*
|
|
45
45
|
* @type {boolean}
|
|
46
46
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
|
-
* @deprecated
|
|
48
47
|
*/
|
|
49
|
-
'
|
|
48
|
+
'searchCount'?: boolean;
|
|
50
49
|
/**
|
|
51
50
|
*
|
|
52
51
|
* @type {boolean}
|
|
53
52
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
53
|
+
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'hitCount'?: boolean;
|
|
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 { ZjhtContractDataResult } from './zjht-contract-data-result';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultZjhtContractDataResult
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultZjhtContractDataResult {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {ZjhtContractDataResult}
|
|
41
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
42
|
+
*/
|
|
43
|
+
'data'?: ZjhtContractDataResult | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
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,31 @@
|
|
|
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 { ZjhtContract } from './zjht-contract';
|
|
13
|
+
/**
|
|
14
|
+
* 智家合同列表
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ZjhtContractDataResult
|
|
17
|
+
*/
|
|
18
|
+
export interface ZjhtContractDataResult {
|
|
19
|
+
/**
|
|
20
|
+
* 数量
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof ZjhtContractDataResult
|
|
23
|
+
*/
|
|
24
|
+
'count'?: number;
|
|
25
|
+
/**
|
|
26
|
+
* 合同
|
|
27
|
+
* @type {Array<ZjhtContract>}
|
|
28
|
+
* @memberof ZjhtContractDataResult
|
|
29
|
+
*/
|
|
30
|
+
'contractList'?: Array<ZjhtContract>;
|
|
31
|
+
}
|
|
@@ -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
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ZjhtContractDetail
|
|
16
|
+
*/
|
|
17
|
+
export interface ZjhtContractDetail {
|
|
18
|
+
/**
|
|
19
|
+
* 合同名称
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ZjhtContractDetail
|
|
22
|
+
*/
|
|
23
|
+
'contractName_haier'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* 合同编码
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ZjhtContractDetail
|
|
28
|
+
*/
|
|
29
|
+
'contractNumber_haier'?: 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 });
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { ZjhtContractDetail } from './zjht-contract-detail';
|
|
13
|
+
/**
|
|
14
|
+
* 合同
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ZjhtContract
|
|
17
|
+
*/
|
|
18
|
+
export interface ZjhtContract {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {ZjhtContractDetail}
|
|
22
|
+
* @memberof ZjhtContract
|
|
23
|
+
*/
|
|
24
|
+
'contract'?: ZjhtContractDetail;
|
|
25
|
+
}
|
|
@@ -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 });
|