@gizone/rrs-client 4.2.9-alpha.660 → 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.
Files changed (65) hide show
  1. package/.openapi-generator/FILES +8 -1
  2. package/apis/reimbursement-bill-api.ts +93 -0
  3. package/dist/apis/reimbursement-bill-api.d.ts +48 -0
  4. package/dist/apis/reimbursement-bill-api.js +70 -0
  5. package/dist/esm/apis/reimbursement-bill-api.d.ts +48 -0
  6. package/dist/esm/apis/reimbursement-bill-api.js +70 -0
  7. package/dist/esm/models/{reimbursement-bill-process-type-enum.d.ts → filter-condition.d.ts} +16 -8
  8. package/dist/esm/models/{reimbursement-bill-process-type-enum.js → filter-condition.js} +1 -10
  9. package/dist/esm/models/index.d.ts +8 -1
  10. package/dist/esm/models/index.js +8 -1
  11. package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
  12. package/dist/esm/models/json-result-zjht-contract-data-result.d.ts +62 -0
  13. package/dist/esm/models/json-result-zjht-contract-data-result.js +14 -0
  14. package/dist/esm/models/reimbursement-bill-cover-info.d.ts +84 -0
  15. package/dist/esm/models/reimbursement-bill-cover-info.js +14 -0
  16. package/dist/esm/models/reimbursement-bill-details-vo.d.ts +37 -0
  17. package/dist/esm/models/reimbursement-bill-list-vo.d.ts +37 -0
  18. package/dist/esm/models/reimbursement-bill-process-record-list-vo.d.ts +5 -6
  19. package/dist/esm/models/zjht-contract-data-result.d.ts +31 -0
  20. package/dist/esm/models/zjht-contract-data-result.js +14 -0
  21. package/dist/esm/models/zjht-contract-detail.d.ts +30 -0
  22. package/dist/esm/models/zjht-contract-detail.js +14 -0
  23. package/dist/{models/reimbursement-bill-process-type-enum.d.ts → esm/models/zjht-contract.d.ts} +11 -8
  24. package/dist/esm/models/zjht-contract.js +14 -0
  25. package/dist/esm/models/zjht-search-dto-filter.d.ts +31 -0
  26. package/dist/esm/models/zjht-search-dto-filter.js +14 -0
  27. package/dist/esm/models/zjht-search-dto.d.ts +55 -0
  28. package/dist/esm/models/zjht-search-dto.js +14 -0
  29. package/dist/models/filter-condition.d.ts +30 -0
  30. package/dist/models/{reimbursement-bill-process-type-enum.js → filter-condition.js} +0 -11
  31. package/dist/models/index.d.ts +8 -1
  32. package/dist/models/index.js +8 -1
  33. package/dist/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
  34. package/dist/models/json-result-zjht-contract-data-result.d.ts +62 -0
  35. package/dist/models/json-result-zjht-contract-data-result.js +15 -0
  36. package/dist/models/reimbursement-bill-cover-info.d.ts +84 -0
  37. package/dist/models/reimbursement-bill-cover-info.js +15 -0
  38. package/dist/models/reimbursement-bill-details-vo.d.ts +37 -0
  39. package/dist/models/reimbursement-bill-list-vo.d.ts +37 -0
  40. package/dist/models/reimbursement-bill-process-record-list-vo.d.ts +5 -6
  41. package/dist/models/zjht-contract-data-result.d.ts +31 -0
  42. package/dist/models/zjht-contract-data-result.js +15 -0
  43. package/dist/models/zjht-contract-detail.d.ts +30 -0
  44. package/dist/models/zjht-contract-detail.js +15 -0
  45. package/dist/models/zjht-contract.d.ts +25 -0
  46. package/dist/models/zjht-contract.js +15 -0
  47. package/dist/models/zjht-search-dto-filter.d.ts +31 -0
  48. package/dist/models/zjht-search-dto-filter.js +15 -0
  49. package/dist/models/zjht-search-dto.d.ts +55 -0
  50. package/dist/models/zjht-search-dto.js +15 -0
  51. package/models/{reimbursement-bill-process-type-enum.ts → filter-condition.ts} +16 -12
  52. package/models/index.ts +8 -1
  53. package/models/ipage-energy-cost-record-info-vo.ts +4 -4
  54. package/models/json-result-zjht-contract-data-result.ts +72 -0
  55. package/models/reimbursement-bill-cover-info.ts +90 -0
  56. package/models/reimbursement-bill-details-vo.ts +39 -0
  57. package/models/reimbursement-bill-list-vo.ts +39 -0
  58. package/models/reimbursement-bill-process-record-list-vo.ts +5 -10
  59. package/models/zjht-contract-data-result.ts +39 -0
  60. package/models/zjht-contract-detail.ts +36 -0
  61. package/models/zjht-contract.ts +33 -0
  62. package/models/zjht-search-dto-filter.ts +39 -0
  63. package/models/zjht-search-dto.ts +63 -0
  64. package/ossutil.log +1194 -1191
  65. package/package.json +1 -1
@@ -15,18 +15,22 @@
15
15
 
16
16
 
17
17
  /**
18
- * 过程类型
18
+ *
19
19
  * @export
20
- * @enum {string}
20
+ * @interface FilterCondition
21
21
  */
22
-
23
- export const ReimbursementBillProcessTypeEnum = {
24
- Initiate: 'INITIATE',
25
- Submit: 'SUBMIT',
26
- Withdraw: 'WITHDRAW'
27
- } as const;
28
-
29
- export type ReimbursementBillProcessTypeEnum = typeof ReimbursementBillProcessTypeEnum[keyof typeof ReimbursementBillProcessTypeEnum];
30
-
31
-
22
+ export interface FilterCondition {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof FilterCondition
27
+ */
28
+ 'searchWord'?: string;
29
+ /**
30
+ *
31
+ * @type {Array<number>}
32
+ * @memberof FilterCondition
33
+ */
34
+ 'in'?: Array<number>;
35
+ }
32
36
 
package/models/index.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';
@@ -477,6 +479,7 @@ export * from './privacy-update-state-dto';
477
479
  export * from './process-network-monitor-repair-vo';
478
480
  export * from './process-work-order-vo';
479
481
  export * from './register-body';
482
+ export * from './reimbursement-bill-cover-info';
480
483
  export * from './reimbursement-bill-details-vo';
481
484
  export * from './reimbursement-bill-draft-dto';
482
485
  export * from './reimbursement-bill-handle-info-add-dto';
@@ -484,7 +487,6 @@ export * from './reimbursement-bill-handle-info-vo';
484
487
  export * from './reimbursement-bill-list-vo';
485
488
  export * from './reimbursement-bill-payer-vo';
486
489
  export * from './reimbursement-bill-process-record-list-vo';
487
- export * from './reimbursement-bill-process-type-enum';
488
490
  export * from './reimbursement-bill-submit-dto';
489
491
  export * from './reimbursement-create-result-dto';
490
492
  export * from './reimbursement-platform-status-dto';
@@ -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';
@@ -43,16 +43,16 @@ export interface IPageEnergyCostRecordInfoVO {
43
43
  'records'?: Array<EnergyCostRecordInfoVO>;
44
44
  /**
45
45
  *
46
- * @type {boolean}
46
+ * @type {number}
47
47
  * @memberof IPageEnergyCostRecordInfoVO
48
48
  */
49
- 'searchCount'?: boolean;
49
+ 'pages'?: number;
50
50
  /**
51
51
  *
52
- * @type {number}
52
+ * @type {boolean}
53
53
  * @memberof IPageEnergyCostRecordInfoVO
54
54
  */
55
- 'pages'?: number;
55
+ 'searchCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {boolean}
@@ -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
+
@@ -0,0 +1,90 @@
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 ReimbursementBillCoverInfo
21
+ */
22
+ export interface ReimbursementBillCoverInfo {
23
+ /**
24
+ * 业务编码
25
+ * @type {string}
26
+ * @memberof ReimbursementBillCoverInfo
27
+ */
28
+ 'busCode'?: string;
29
+ /**
30
+ * 业务域
31
+ * @type {string}
32
+ * @memberof ReimbursementBillCoverInfo
33
+ */
34
+ 'buDomain'?: string;
35
+ /**
36
+ * 节点类型
37
+ * @type {string}
38
+ * @memberof ReimbursementBillCoverInfo
39
+ */
40
+ 'nodeType'?: string;
41
+ /**
42
+ * 业务结算账单号
43
+ * @type {string}
44
+ * @memberof ReimbursementBillCoverInfo
45
+ */
46
+ 'billCode'?: string;
47
+ /**
48
+ * 财智云报账申请单号
49
+ * @type {string}
50
+ * @memberof ReimbursementBillCoverInfo
51
+ */
52
+ 'fdcNo'?: string;
53
+ /**
54
+ * 报账单号
55
+ * @type {string}
56
+ * @memberof ReimbursementBillCoverInfo
57
+ */
58
+ 'reimNo'?: string;
59
+ /**
60
+ * 单据经办人账号
61
+ * @type {string}
62
+ * @memberof ReimbursementBillCoverInfo
63
+ */
64
+ 'handlerId'?: string;
65
+ /**
66
+ * 单据经办人姓名
67
+ * @type {string}
68
+ * @memberof ReimbursementBillCoverInfo
69
+ */
70
+ 'handlerName'?: string;
71
+ /**
72
+ * 业务场景
73
+ * @type {string}
74
+ * @memberof ReimbursementBillCoverInfo
75
+ */
76
+ 'srcInfo'?: string;
77
+ /**
78
+ * 文件名
79
+ * @type {string}
80
+ * @memberof ReimbursementBillCoverInfo
81
+ */
82
+ 'fileName'?: string;
83
+ /**
84
+ * 文件地址
85
+ * @type {string}
86
+ * @memberof ReimbursementBillCoverInfo
87
+ */
88
+ 'fileUrl'?: string;
89
+ }
90
+
@@ -24,6 +24,9 @@ import type { InvoiceTypeEnum } from './invoice-type-enum';
24
24
  import type { PaymentMethodEnum } from './payment-method-enum';
25
25
  // May contain unused imports in some cases
26
26
  // @ts-ignore
27
+ import type { ReimbursementBillCoverInfo } from './reimbursement-bill-cover-info';
28
+ // May contain unused imports in some cases
29
+ // @ts-ignore
27
30
  import type { ReimbursementBillHandleInfoVo } from './reimbursement-bill-handle-info-vo';
28
31
  // May contain unused imports in some cases
29
32
  // @ts-ignore
@@ -263,6 +266,42 @@ export interface ReimbursementBillDetailsVo {
263
266
  * @memberof ReimbursementBillDetailsVo
264
267
  */
265
268
  'reimbursementStatus'?: ReimbursementStatusEnum;
269
+ /**
270
+ * 是否已进行场景分摊
271
+ * @type {boolean}
272
+ * @memberof ReimbursementBillDetailsVo
273
+ */
274
+ 'scenarioAllocated'?: boolean;
275
+ /**
276
+ * 明细单号
277
+ * @type {string}
278
+ * @memberof ReimbursementBillDetailsVo
279
+ */
280
+ 'detailedOrderNo'?: string;
281
+ /**
282
+ * 财智云返回预算占用单号
283
+ * @type {string}
284
+ * @memberof ReimbursementBillDetailsVo
285
+ */
286
+ 'occupyNo'?: string;
287
+ /**
288
+ * 财智云报账申请单号
289
+ * @type {string}
290
+ * @memberof ReimbursementBillDetailsVo
291
+ */
292
+ 'fdcNo'?: string;
293
+ /**
294
+ * 报账平台BZD单号
295
+ * @type {string}
296
+ * @memberof ReimbursementBillDetailsVo
297
+ */
298
+ 'reimNo'?: string;
299
+ /**
300
+ *
301
+ * @type {ReimbursementBillCoverInfo}
302
+ * @memberof ReimbursementBillDetailsVo
303
+ */
304
+ 'billCover'?: ReimbursementBillCoverInfo;
266
305
  }
267
306
 
268
307
  export const ReimbursementBillDetailsVoTaxTypeEnum = {
@@ -24,6 +24,9 @@ import type { InvoiceTypeEnum } from './invoice-type-enum';
24
24
  import type { PaymentMethodEnum } from './payment-method-enum';
25
25
  // May contain unused imports in some cases
26
26
  // @ts-ignore
27
+ import type { ReimbursementBillCoverInfo } from './reimbursement-bill-cover-info';
28
+ // May contain unused imports in some cases
29
+ // @ts-ignore
27
30
  import type { ReimbursementStatusEnum } from './reimbursement-status-enum';
28
31
 
29
32
  /**
@@ -164,6 +167,42 @@ export interface ReimbursementBillListVo {
164
167
  * @memberof ReimbursementBillListVo
165
168
  */
166
169
  'handlerUserId'?: number;
170
+ /**
171
+ * 是否已进行场景分摊
172
+ * @type {boolean}
173
+ * @memberof ReimbursementBillListVo
174
+ */
175
+ 'scenarioAllocated'?: boolean;
176
+ /**
177
+ * 明细单号
178
+ * @type {string}
179
+ * @memberof ReimbursementBillListVo
180
+ */
181
+ 'detailedOrderNo'?: string;
182
+ /**
183
+ * 财智云返回预算占用单号
184
+ * @type {string}
185
+ * @memberof ReimbursementBillListVo
186
+ */
187
+ 'occupyNo'?: string;
188
+ /**
189
+ * 财智云报账申请单号
190
+ * @type {string}
191
+ * @memberof ReimbursementBillListVo
192
+ */
193
+ 'fdcNo'?: string;
194
+ /**
195
+ * 报账平台BZD单号
196
+ * @type {string}
197
+ * @memberof ReimbursementBillListVo
198
+ */
199
+ 'reimNo'?: string;
200
+ /**
201
+ *
202
+ * @type {ReimbursementBillCoverInfo}
203
+ * @memberof ReimbursementBillListVo
204
+ */
205
+ 'billCover'?: ReimbursementBillCoverInfo;
167
206
  }
168
207
 
169
208
 
@@ -13,9 +13,6 @@
13
13
  */
14
14
 
15
15
 
16
- // May contain unused imports in some cases
17
- // @ts-ignore
18
- import type { ReimbursementBillProcessTypeEnum } from './reimbursement-bill-process-type-enum';
19
16
 
20
17
  /**
21
18
  * 报账单流转列表
@@ -30,11 +27,11 @@ export interface ReimbursementBillProcessRecordListVo {
30
27
  */
31
28
  'reimbursementBillId'?: number;
32
29
  /**
33
- *
34
- * @type {ReimbursementBillProcessTypeEnum}
30
+ * 过程类型
31
+ * @type {string}
35
32
  * @memberof ReimbursementBillProcessRecordListVo
36
33
  */
37
- 'processType'?: ReimbursementBillProcessTypeEnum;
34
+ 'processType'?: string;
38
35
  /**
39
36
  * 处理人id
40
37
  * @type {number}
@@ -54,12 +51,10 @@ export interface ReimbursementBillProcessRecordListVo {
54
51
  */
55
52
  'handlerTime'?: string;
56
53
  /**
57
- * 处理状态
54
+ * 备注
58
55
  * @type {string}
59
56
  * @memberof ReimbursementBillProcessRecordListVo
60
57
  */
61
- 'handlerStatus'?: string;
58
+ 'remarks'?: string;
62
59
  }
63
60
 
64
-
65
-
@@ -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,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
+
@@ -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 { FilterCondition } from './filter-condition';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface ZjhtSearchDtoFilter
24
+ */
25
+ export interface ZjhtSearchDtoFilter {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof ZjhtSearchDtoFilter
30
+ */
31
+ 'id'?: string;
32
+ /**
33
+ *
34
+ * @type {FilterCondition}
35
+ * @memberof ZjhtSearchDtoFilter
36
+ */
37
+ 'condition'?: FilterCondition;
38
+ }
39
+
@@ -0,0 +1,63 @@
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 { ZjhtSearchDtoFilter } from './zjht-search-dto-filter';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface ZjhtSearchDto
24
+ */
25
+ export interface ZjhtSearchDto {
26
+ /**
27
+ *
28
+ * @type {number}
29
+ * @memberof ZjhtSearchDto
30
+ */
31
+ 'pageNum'?: number;
32
+ /**
33
+ *
34
+ * @type {number}
35
+ * @memberof ZjhtSearchDto
36
+ */
37
+ 'pageSize'?: number;
38
+ /**
39
+ *
40
+ * @type {Array<string>}
41
+ * @memberof ZjhtSearchDto
42
+ */
43
+ 'ids'?: Array<string>;
44
+ /**
45
+ * 用户工号
46
+ * @type {string}
47
+ * @memberof ZjhtSearchDto
48
+ */
49
+ 'username'?: string;
50
+ /**
51
+ * 合同编号
52
+ * @type {string}
53
+ * @memberof ZjhtSearchDto
54
+ */
55
+ 'contractNo'?: string;
56
+ /**
57
+ *
58
+ * @type {Array<ZjhtSearchDtoFilter>}
59
+ * @memberof ZjhtSearchDto
60
+ */
61
+ 'filterList'?: Array<ZjhtSearchDtoFilter>;
62
+ }
63
+