@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,39 @@
|
|
|
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 { ZjhtContract } from './zjht-contract';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* 智家合同列表
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ZjhtContractDataResult
|
|
24
|
+
*/
|
|
25
|
+
export interface ZjhtContractDataResult {
|
|
26
|
+
/**
|
|
27
|
+
* 数量
|
|
28
|
+
* @type {number}
|
|
29
|
+
* @memberof ZjhtContractDataResult
|
|
30
|
+
*/
|
|
31
|
+
'count'?: number;
|
|
32
|
+
/**
|
|
33
|
+
* 合同
|
|
34
|
+
* @type {Array<ZjhtContract>}
|
|
35
|
+
* @memberof ZjhtContractDataResult
|
|
36
|
+
*/
|
|
37
|
+
'contractList'?: Array<ZjhtContract>;
|
|
38
|
+
}
|
|
39
|
+
|
|
@@ -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
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface ZjhtContractDetail
|
|
21
|
+
*/
|
|
22
|
+
export interface ZjhtContractDetail {
|
|
23
|
+
/**
|
|
24
|
+
* 合同名称
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ZjhtContractDetail
|
|
27
|
+
*/
|
|
28
|
+
'contractName_haier'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* 合同编码
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ZjhtContractDetail
|
|
33
|
+
*/
|
|
34
|
+
'contractNumber_haier'?: string;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
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
|
+
* 智家合同列表查询
|
|
19
|
+
* @export
|
|
20
|
+
* @interface ZjhtContractListSearchDto
|
|
21
|
+
*/
|
|
22
|
+
export interface ZjhtContractListSearchDto {
|
|
23
|
+
/**
|
|
24
|
+
* 页码
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof ZjhtContractListSearchDto
|
|
27
|
+
*/
|
|
28
|
+
'pageNum'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* 页数
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof ZjhtContractListSearchDto
|
|
33
|
+
*/
|
|
34
|
+
'pageSize'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 用户工号
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ZjhtContractListSearchDto
|
|
39
|
+
*/
|
|
40
|
+
'username': string;
|
|
41
|
+
/**
|
|
42
|
+
* 合同编号
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ZjhtContractListSearchDto
|
|
45
|
+
*/
|
|
46
|
+
'contractNo': string;
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
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 { ZjhtContractDetail } from './zjht-contract-detail';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* 合同
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ZjhtContract
|
|
24
|
+
*/
|
|
25
|
+
export interface ZjhtContract {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {ZjhtContractDetail}
|
|
29
|
+
* @memberof ZjhtContract
|
|
30
|
+
*/
|
|
31
|
+
'contract'?: ZjhtContractDetail;
|
|
32
|
+
}
|
|
33
|
+
|