@gizone/rrs-client 4.2.9-alpha.661 → 4.2.9-alpha.663
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 +5 -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/index.d.ts +5 -0
- package/dist/esm/models/index.js +5 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
- 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-list-search-dto.d.ts +42 -0
- package/dist/esm/models/zjht-contract-list-search-dto.js +14 -0
- package/dist/esm/models/zjht-contract.d.ts +25 -0
- package/dist/esm/models/zjht-contract.js +14 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -0
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
- 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-list-search-dto.d.ts +42 -0
- package/dist/models/zjht-contract-list-search-dto.js +15 -0
- package/dist/models/zjht-contract.d.ts +25 -0
- package/dist/models/zjht-contract.js +15 -0
- package/models/index.ts +5 -0
- package/models/ipage-energy-cost-record-info-vo.ts +4 -4
- 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-list-search-dto.ts +48 -0
- package/models/zjht-contract.ts +33 -0
- package/ossutil.log +1197 -1194
- package/package.json +1 -1
|
@@ -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,42 @@
|
|
|
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 ZjhtContractListSearchDto
|
|
16
|
+
*/
|
|
17
|
+
export interface ZjhtContractListSearchDto {
|
|
18
|
+
/**
|
|
19
|
+
* 页码
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof ZjhtContractListSearchDto
|
|
22
|
+
*/
|
|
23
|
+
'pageNum'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* 页数
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof ZjhtContractListSearchDto
|
|
28
|
+
*/
|
|
29
|
+
'pageSize'?: number;
|
|
30
|
+
/**
|
|
31
|
+
* 用户工号
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ZjhtContractListSearchDto
|
|
34
|
+
*/
|
|
35
|
+
'username': string;
|
|
36
|
+
/**
|
|
37
|
+
* 合同编号
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ZjhtContractListSearchDto
|
|
40
|
+
*/
|
|
41
|
+
'contractNo': string;
|
|
42
|
+
}
|
|
@@ -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 {};
|
package/dist/models/index.d.ts
CHANGED
|
@@ -372,6 +372,7 @@ export * from './json-result-void';
|
|
|
372
372
|
export * from './json-result-work-order-dept-settings-entity';
|
|
373
373
|
export * from './json-result-work-order-detail-dto';
|
|
374
374
|
export * from './json-result-work-order-issue-type-settings-entity';
|
|
375
|
+
export * from './json-result-zjht-contract-data-result';
|
|
375
376
|
export * from './login-body';
|
|
376
377
|
export * from './login-type-enum';
|
|
377
378
|
export * from './maintenace-daily-abnormal-cause-type-enum';
|
|
@@ -661,3 +662,7 @@ export * from './wx-mp-get-self-menu-info-result';
|
|
|
661
662
|
export * from './wx-mp-menu';
|
|
662
663
|
export * from './wx-mp-self-menu-button';
|
|
663
664
|
export * from './wx-mp-self-menu-info';
|
|
665
|
+
export * from './zjht-contract';
|
|
666
|
+
export * from './zjht-contract-data-result';
|
|
667
|
+
export * from './zjht-contract-detail';
|
|
668
|
+
export * from './zjht-contract-list-search-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -388,6 +388,7 @@ __exportStar(require("./json-result-void"), exports);
|
|
|
388
388
|
__exportStar(require("./json-result-work-order-dept-settings-entity"), exports);
|
|
389
389
|
__exportStar(require("./json-result-work-order-detail-dto"), exports);
|
|
390
390
|
__exportStar(require("./json-result-work-order-issue-type-settings-entity"), exports);
|
|
391
|
+
__exportStar(require("./json-result-zjht-contract-data-result"), exports);
|
|
391
392
|
__exportStar(require("./login-body"), exports);
|
|
392
393
|
__exportStar(require("./login-type-enum"), exports);
|
|
393
394
|
__exportStar(require("./maintenace-daily-abnormal-cause-type-enum"), exports);
|
|
@@ -677,3 +678,7 @@ __exportStar(require("./wx-mp-get-self-menu-info-result"), exports);
|
|
|
677
678
|
__exportStar(require("./wx-mp-menu"), exports);
|
|
678
679
|
__exportStar(require("./wx-mp-self-menu-button"), exports);
|
|
679
680
|
__exportStar(require("./wx-mp-self-menu-info"), exports);
|
|
681
|
+
__exportStar(require("./zjht-contract"), exports);
|
|
682
|
+
__exportStar(require("./zjht-contract-data-result"), exports);
|
|
683
|
+
__exportStar(require("./zjht-contract-detail"), exports);
|
|
684
|
+
__exportStar(require("./zjht-contract-list-search-dto"), exports);
|
|
@@ -36,10 +36,10 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
36
36
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {boolean}
|
|
40
40
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'searchCount'?: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
45
|
* @type {boolean}
|
|
@@ -49,10 +49,10 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
49
49
|
'hitCount'?: boolean;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {number}
|
|
53
53
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'pages'?: number;
|
|
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,42 @@
|
|
|
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 ZjhtContractListSearchDto
|
|
16
|
+
*/
|
|
17
|
+
export interface ZjhtContractListSearchDto {
|
|
18
|
+
/**
|
|
19
|
+
* 页码
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof ZjhtContractListSearchDto
|
|
22
|
+
*/
|
|
23
|
+
'pageNum'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* 页数
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof ZjhtContractListSearchDto
|
|
28
|
+
*/
|
|
29
|
+
'pageSize'?: number;
|
|
30
|
+
/**
|
|
31
|
+
* 用户工号
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ZjhtContractListSearchDto
|
|
34
|
+
*/
|
|
35
|
+
'username': string;
|
|
36
|
+
/**
|
|
37
|
+
* 合同编号
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ZjhtContractListSearchDto
|
|
40
|
+
*/
|
|
41
|
+
'contractNo': string;
|
|
42
|
+
}
|
|
@@ -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 });
|
package/models/index.ts
CHANGED
|
@@ -372,6 +372,7 @@ export * from './json-result-void';
|
|
|
372
372
|
export * from './json-result-work-order-dept-settings-entity';
|
|
373
373
|
export * from './json-result-work-order-detail-dto';
|
|
374
374
|
export * from './json-result-work-order-issue-type-settings-entity';
|
|
375
|
+
export * from './json-result-zjht-contract-data-result';
|
|
375
376
|
export * from './login-body';
|
|
376
377
|
export * from './login-type-enum';
|
|
377
378
|
export * from './maintenace-daily-abnormal-cause-type-enum';
|
|
@@ -661,3 +662,7 @@ export * from './wx-mp-get-self-menu-info-result';
|
|
|
661
662
|
export * from './wx-mp-menu';
|
|
662
663
|
export * from './wx-mp-self-menu-button';
|
|
663
664
|
export * from './wx-mp-self-menu-info';
|
|
665
|
+
export * from './zjht-contract';
|
|
666
|
+
export * from './zjht-contract-data-result';
|
|
667
|
+
export * from './zjht-contract-detail';
|
|
668
|
+
export * from './zjht-contract-list-search-dto';
|
|
@@ -43,10 +43,10 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
43
43
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @type {
|
|
46
|
+
* @type {boolean}
|
|
47
47
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'searchCount'?: boolean;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
52
|
* @type {boolean}
|
|
@@ -56,10 +56,10 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
56
56
|
'hitCount'?: boolean;
|
|
57
57
|
/**
|
|
58
58
|
*
|
|
59
|
-
* @type {
|
|
59
|
+
* @type {number}
|
|
60
60
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
61
61
|
*/
|
|
62
|
-
'
|
|
62
|
+
'pages'?: number;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|
|
@@ -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 { ZjhtContractDataResult } from './zjht-contract-data-result';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultZjhtContractDataResult
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultZjhtContractDataResult {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {ZjhtContractDataResult}
|
|
50
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
51
|
+
*/
|
|
52
|
+
'data'?: ZjhtContractDataResult | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|