@gizone/rrs-client 4.2.9-alpha.662 → 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 +1 -3
- package/apis/reimbursement-bill-api.ts +13 -13
- package/dist/apis/reimbursement-bill-api.d.ts +7 -7
- package/dist/apis/reimbursement-bill-api.js +10 -10
- package/dist/esm/apis/reimbursement-bill-api.d.ts +7 -7
- package/dist/esm/apis/reimbursement-bill-api.js +10 -10
- package/dist/esm/models/index.d.ts +1 -3
- package/dist/esm/models/index.js +1 -3
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +6 -6
- package/dist/{models/zjht-search-dto.d.ts → esm/models/zjht-contract-list-search-dto.d.ts} +11 -24
- package/dist/models/index.d.ts +1 -3
- package/dist/models/index.js +1 -3
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +6 -6
- package/dist/{esm/models/zjht-search-dto.d.ts → models/zjht-contract-list-search-dto.d.ts} +11 -24
- package/models/index.ts +1 -3
- package/models/ipage-energy-cost-record-info-vo.ts +6 -6
- package/models/{zjht-search-dto.ts → zjht-contract-list-search-dto.ts} +11 -26
- package/ossutil.log +1197 -1194
- package/package.json +1 -1
- package/dist/esm/models/filter-condition.d.ts +0 -30
- package/dist/esm/models/zjht-search-dto-filter.d.ts +0 -31
- package/dist/esm/models/zjht-search-dto-filter.js +0 -14
- package/dist/esm/models/zjht-search-dto.js +0 -14
- package/dist/models/filter-condition.d.ts +0 -30
- package/dist/models/zjht-search-dto-filter.d.ts +0 -31
- package/dist/models/zjht-search-dto-filter.js +0 -15
- package/dist/models/zjht-search-dto.js +0 -15
- package/models/filter-condition.ts +0 -36
- package/models/zjht-search-dto-filter.ts +0 -39
- /package/dist/esm/models/{filter-condition.js → zjht-contract-list-search-dto.js} +0 -0
- /package/dist/models/{filter-condition.js → zjht-contract-list-search-dto.js} +0 -0
|
@@ -13,51 +13,36 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
// May contain unused imports in some cases
|
|
17
|
-
// @ts-ignore
|
|
18
|
-
import type { ZjhtSearchDtoFilter } from './zjht-search-dto-filter';
|
|
19
16
|
|
|
20
17
|
/**
|
|
21
|
-
*
|
|
18
|
+
* 智家合同列表查询
|
|
22
19
|
* @export
|
|
23
|
-
* @interface
|
|
20
|
+
* @interface ZjhtContractListSearchDto
|
|
24
21
|
*/
|
|
25
|
-
export interface
|
|
22
|
+
export interface ZjhtContractListSearchDto {
|
|
26
23
|
/**
|
|
27
|
-
*
|
|
24
|
+
* 页码
|
|
28
25
|
* @type {number}
|
|
29
|
-
* @memberof
|
|
26
|
+
* @memberof ZjhtContractListSearchDto
|
|
30
27
|
*/
|
|
31
28
|
'pageNum'?: number;
|
|
32
29
|
/**
|
|
33
|
-
*
|
|
30
|
+
* 页数
|
|
34
31
|
* @type {number}
|
|
35
|
-
* @memberof
|
|
32
|
+
* @memberof ZjhtContractListSearchDto
|
|
36
33
|
*/
|
|
37
34
|
'pageSize'?: number;
|
|
38
|
-
/**
|
|
39
|
-
*
|
|
40
|
-
* @type {Array<string>}
|
|
41
|
-
* @memberof ZjhtSearchDto
|
|
42
|
-
*/
|
|
43
|
-
'ids'?: Array<string>;
|
|
44
35
|
/**
|
|
45
36
|
* 用户工号
|
|
46
37
|
* @type {string}
|
|
47
|
-
* @memberof
|
|
38
|
+
* @memberof ZjhtContractListSearchDto
|
|
48
39
|
*/
|
|
49
|
-
'username'
|
|
40
|
+
'username': string;
|
|
50
41
|
/**
|
|
51
42
|
* 合同编号
|
|
52
43
|
* @type {string}
|
|
53
|
-
* @memberof
|
|
54
|
-
*/
|
|
55
|
-
'contractNo'?: string;
|
|
56
|
-
/**
|
|
57
|
-
*
|
|
58
|
-
* @type {Array<ZjhtSearchDtoFilter>}
|
|
59
|
-
* @memberof ZjhtSearchDto
|
|
44
|
+
* @memberof ZjhtContractListSearchDto
|
|
60
45
|
*/
|
|
61
|
-
'
|
|
46
|
+
'contractNo': string;
|
|
62
47
|
}
|
|
63
48
|
|