@gizone/rrs-client 4.2.9-alpha.661 → 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.
- package/.openapi-generator/FILES +7 -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/filter-condition.d.ts +30 -0
- package/dist/esm/models/filter-condition.js +14 -0
- package/dist/esm/models/index.d.ts +7 -0
- package/dist/esm/models/index.js +7 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +3 -3
- 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.d.ts +25 -0
- package/dist/esm/models/zjht-contract.js +14 -0
- package/dist/esm/models/zjht-search-dto-filter.d.ts +31 -0
- package/dist/esm/models/zjht-search-dto-filter.js +14 -0
- package/dist/esm/models/zjht-search-dto.d.ts +55 -0
- package/dist/esm/models/zjht-search-dto.js +14 -0
- package/dist/models/filter-condition.d.ts +30 -0
- package/dist/models/filter-condition.js +15 -0
- package/dist/models/index.d.ts +7 -0
- package/dist/models/index.js +7 -0
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +3 -3
- 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.d.ts +25 -0
- package/dist/models/zjht-contract.js +15 -0
- package/dist/models/zjht-search-dto-filter.d.ts +31 -0
- package/dist/models/zjht-search-dto-filter.js +15 -0
- package/dist/models/zjht-search-dto.d.ts +55 -0
- package/dist/models/zjht-search-dto.js +15 -0
- package/models/filter-condition.ts +36 -0
- package/models/index.ts +7 -0
- package/models/ipage-energy-cost-record-info-vo.ts +3 -3
- 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.ts +33 -0
- package/models/zjht-search-dto-filter.ts +39 -0
- package/models/zjht-search-dto.ts +63 -0
- package/ossutil.log +1194 -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 { FilterCondition } from './filter-condition';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ZjhtSearchDtoFilter
|
|
17
|
+
*/
|
|
18
|
+
export interface ZjhtSearchDtoFilter {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof ZjhtSearchDtoFilter
|
|
23
|
+
*/
|
|
24
|
+
'id'?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {FilterCondition}
|
|
28
|
+
* @memberof ZjhtSearchDtoFilter
|
|
29
|
+
*/
|
|
30
|
+
'condition'?: FilterCondition;
|
|
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,55 @@
|
|
|
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 { ZjhtSearchDtoFilter } from './zjht-search-dto-filter';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ZjhtSearchDto
|
|
17
|
+
*/
|
|
18
|
+
export interface ZjhtSearchDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof ZjhtSearchDto
|
|
23
|
+
*/
|
|
24
|
+
'pageNum'?: number;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof ZjhtSearchDto
|
|
29
|
+
*/
|
|
30
|
+
'pageSize'?: number;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<string>}
|
|
34
|
+
* @memberof ZjhtSearchDto
|
|
35
|
+
*/
|
|
36
|
+
'ids'?: Array<string>;
|
|
37
|
+
/**
|
|
38
|
+
* 用户工号
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ZjhtSearchDto
|
|
41
|
+
*/
|
|
42
|
+
'username'?: string;
|
|
43
|
+
/**
|
|
44
|
+
* 合同编号
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof ZjhtSearchDto
|
|
47
|
+
*/
|
|
48
|
+
'contractNo'?: string;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {Array<ZjhtSearchDtoFilter>}
|
|
52
|
+
* @memberof ZjhtSearchDto
|
|
53
|
+
*/
|
|
54
|
+
'filterList'?: Array<ZjhtSearchDtoFilter>;
|
|
55
|
+
}
|
|
@@ -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,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 FilterCondition
|
|
21
|
+
*/
|
|
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
|
+
}
|
|
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';
|
|
@@ -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';
|
|
@@ -51,15 +51,15 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
51
51
|
*
|
|
52
52
|
* @type {boolean}
|
|
53
53
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
54
|
-
* @deprecated
|
|
55
54
|
*/
|
|
56
|
-
'
|
|
55
|
+
'searchCount'?: boolean;
|
|
57
56
|
/**
|
|
58
57
|
*
|
|
59
58
|
* @type {boolean}
|
|
60
59
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
60
|
+
* @deprecated
|
|
61
61
|
*/
|
|
62
|
-
'
|
|
62
|
+
'hitCount'?: boolean;
|
|
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
|
+
|
|
@@ -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
|
+
|