@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.
Files changed (31) hide show
  1. package/.openapi-generator/FILES +1 -3
  2. package/apis/reimbursement-bill-api.ts +13 -13
  3. package/dist/apis/reimbursement-bill-api.d.ts +7 -7
  4. package/dist/apis/reimbursement-bill-api.js +10 -10
  5. package/dist/esm/apis/reimbursement-bill-api.d.ts +7 -7
  6. package/dist/esm/apis/reimbursement-bill-api.js +10 -10
  7. package/dist/esm/models/index.d.ts +1 -3
  8. package/dist/esm/models/index.js +1 -3
  9. package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +6 -6
  10. package/dist/{models/zjht-search-dto.d.ts → esm/models/zjht-contract-list-search-dto.d.ts} +11 -24
  11. package/dist/models/index.d.ts +1 -3
  12. package/dist/models/index.js +1 -3
  13. package/dist/models/ipage-energy-cost-record-info-vo.d.ts +6 -6
  14. package/dist/{esm/models/zjht-search-dto.d.ts → models/zjht-contract-list-search-dto.d.ts} +11 -24
  15. package/models/index.ts +1 -3
  16. package/models/ipage-energy-cost-record-info-vo.ts +6 -6
  17. package/models/{zjht-search-dto.ts → zjht-contract-list-search-dto.ts} +11 -26
  18. package/ossutil.log +1197 -1194
  19. package/package.json +1 -1
  20. package/dist/esm/models/filter-condition.d.ts +0 -30
  21. package/dist/esm/models/zjht-search-dto-filter.d.ts +0 -31
  22. package/dist/esm/models/zjht-search-dto-filter.js +0 -14
  23. package/dist/esm/models/zjht-search-dto.js +0 -14
  24. package/dist/models/filter-condition.d.ts +0 -30
  25. package/dist/models/zjht-search-dto-filter.d.ts +0 -31
  26. package/dist/models/zjht-search-dto-filter.js +0 -15
  27. package/dist/models/zjht-search-dto.js +0 -15
  28. package/models/filter-condition.ts +0 -36
  29. package/models/zjht-search-dto-filter.ts +0 -39
  30. /package/dist/esm/models/{filter-condition.js → zjht-contract-list-search-dto.js} +0 -0
  31. /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 ZjhtSearchDto
20
+ * @interface ZjhtContractListSearchDto
24
21
  */
25
- export interface ZjhtSearchDto {
22
+ export interface ZjhtContractListSearchDto {
26
23
  /**
27
- *
24
+ * 页码
28
25
  * @type {number}
29
- * @memberof ZjhtSearchDto
26
+ * @memberof ZjhtContractListSearchDto
30
27
  */
31
28
  'pageNum'?: number;
32
29
  /**
33
- *
30
+ * 页数
34
31
  * @type {number}
35
- * @memberof ZjhtSearchDto
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 ZjhtSearchDto
38
+ * @memberof ZjhtContractListSearchDto
48
39
  */
49
- 'username'?: string;
40
+ 'username': string;
50
41
  /**
51
42
  * 合同编号
52
43
  * @type {string}
53
- * @memberof ZjhtSearchDto
54
- */
55
- 'contractNo'?: string;
56
- /**
57
- *
58
- * @type {Array<ZjhtSearchDtoFilter>}
59
- * @memberof ZjhtSearchDto
44
+ * @memberof ZjhtContractListSearchDto
60
45
  */
61
- 'filterList'?: Array<ZjhtSearchDtoFilter>;
46
+ 'contractNo': string;
62
47
  }
63
48