@gizone/rrs-client 4.2.9-alpha.667 → 4.2.9-alpha.669
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/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +8 -8
- package/dist/esm/models/reimbursement-bill-details-vo.d.ts +6 -0
- package/dist/esm/models/reimbursement-bill-submit-dto.d.ts +5 -5
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +8 -8
- package/dist/models/reimbursement-bill-details-vo.d.ts +6 -0
- package/dist/models/reimbursement-bill-submit-dto.d.ts +5 -5
- package/models/ipage-energy-cost-record-info-vo.ts +8 -8
- package/models/reimbursement-bill-details-vo.ts +6 -0
- package/models/reimbursement-bill-submit-dto.ts +5 -5
- package/ossutil.log +1212 -1203
- package/package.json +1 -1
|
@@ -27,32 +27,32 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
27
27
|
* @type {number}
|
|
28
28
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
29
29
|
*/
|
|
30
|
-
'
|
|
30
|
+
'pages'?: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {boolean}
|
|
34
34
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
35
|
+
* @deprecated
|
|
35
36
|
*/
|
|
36
|
-
'
|
|
37
|
+
'hitCount'?: boolean;
|
|
37
38
|
/**
|
|
38
39
|
*
|
|
39
|
-
* @type {
|
|
40
|
+
* @type {Array<EnergyCostRecordInfoVO>}
|
|
40
41
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
42
|
*/
|
|
42
|
-
'
|
|
43
|
+
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
43
44
|
/**
|
|
44
45
|
*
|
|
45
46
|
* @type {number}
|
|
46
47
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
48
|
*/
|
|
48
|
-
'
|
|
49
|
+
'current'?: number;
|
|
49
50
|
/**
|
|
50
51
|
*
|
|
51
52
|
* @type {boolean}
|
|
52
53
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
53
|
-
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -117,6 +117,12 @@ export interface ReimbursementBillDetailsVo {
|
|
|
117
117
|
* @memberof ReimbursementBillDetailsVo
|
|
118
118
|
*/
|
|
119
119
|
'supplierName'?: string;
|
|
120
|
+
/**
|
|
121
|
+
* 收款银行开户行编码
|
|
122
|
+
* @type {string}
|
|
123
|
+
* @memberof ReimbursementBillDetailsVo
|
|
124
|
+
*/
|
|
125
|
+
'payeeBankCode'?: string;
|
|
120
126
|
/**
|
|
121
127
|
* 收款方银行账号
|
|
122
128
|
* @type {string}
|
|
@@ -60,25 +60,25 @@ export interface ReimbursementBillSubmitDto {
|
|
|
60
60
|
* @type {string}
|
|
61
61
|
* @memberof ReimbursementBillSubmitDto
|
|
62
62
|
*/
|
|
63
|
-
'applicantName'
|
|
63
|
+
'applicantName': string;
|
|
64
64
|
/**
|
|
65
65
|
* 申请人编码
|
|
66
66
|
* @type {string}
|
|
67
67
|
* @memberof ReimbursementBillSubmitDto
|
|
68
68
|
*/
|
|
69
|
-
'applicantCode'
|
|
69
|
+
'applicantCode': string;
|
|
70
70
|
/**
|
|
71
71
|
* 执行主体
|
|
72
72
|
* @type {string}
|
|
73
73
|
* @memberof ReimbursementBillSubmitDto
|
|
74
74
|
*/
|
|
75
|
-
'executionSubject'
|
|
75
|
+
'executionSubject': string;
|
|
76
76
|
/**
|
|
77
77
|
* 预算主体
|
|
78
78
|
* @type {string}
|
|
79
79
|
* @memberof ReimbursementBillSubmitDto
|
|
80
80
|
*/
|
|
81
|
-
'budgetSubject'
|
|
81
|
+
'budgetSubject': string;
|
|
82
82
|
/**
|
|
83
83
|
*
|
|
84
84
|
* @type {PaymentMethodEnum}
|
|
@@ -108,7 +108,7 @@ export interface ReimbursementBillSubmitDto {
|
|
|
108
108
|
* @type {string}
|
|
109
109
|
* @memberof ReimbursementBillSubmitDto
|
|
110
110
|
*/
|
|
111
|
-
'supplierName'
|
|
111
|
+
'supplierName': string;
|
|
112
112
|
/**
|
|
113
113
|
* 收款银行开户行编码
|
|
114
114
|
* @type {string}
|
|
@@ -27,32 +27,32 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
27
27
|
* @type {number}
|
|
28
28
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
29
29
|
*/
|
|
30
|
-
'
|
|
30
|
+
'pages'?: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {boolean}
|
|
34
34
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
35
|
+
* @deprecated
|
|
35
36
|
*/
|
|
36
|
-
'
|
|
37
|
+
'hitCount'?: boolean;
|
|
37
38
|
/**
|
|
38
39
|
*
|
|
39
|
-
* @type {
|
|
40
|
+
* @type {Array<EnergyCostRecordInfoVO>}
|
|
40
41
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
42
|
*/
|
|
42
|
-
'
|
|
43
|
+
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
43
44
|
/**
|
|
44
45
|
*
|
|
45
46
|
* @type {number}
|
|
46
47
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
48
|
*/
|
|
48
|
-
'
|
|
49
|
+
'current'?: number;
|
|
49
50
|
/**
|
|
50
51
|
*
|
|
51
52
|
* @type {boolean}
|
|
52
53
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
53
|
-
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -117,6 +117,12 @@ export interface ReimbursementBillDetailsVo {
|
|
|
117
117
|
* @memberof ReimbursementBillDetailsVo
|
|
118
118
|
*/
|
|
119
119
|
'supplierName'?: string;
|
|
120
|
+
/**
|
|
121
|
+
* 收款银行开户行编码
|
|
122
|
+
* @type {string}
|
|
123
|
+
* @memberof ReimbursementBillDetailsVo
|
|
124
|
+
*/
|
|
125
|
+
'payeeBankCode'?: string;
|
|
120
126
|
/**
|
|
121
127
|
* 收款方银行账号
|
|
122
128
|
* @type {string}
|
|
@@ -60,25 +60,25 @@ export interface ReimbursementBillSubmitDto {
|
|
|
60
60
|
* @type {string}
|
|
61
61
|
* @memberof ReimbursementBillSubmitDto
|
|
62
62
|
*/
|
|
63
|
-
'applicantName'
|
|
63
|
+
'applicantName': string;
|
|
64
64
|
/**
|
|
65
65
|
* 申请人编码
|
|
66
66
|
* @type {string}
|
|
67
67
|
* @memberof ReimbursementBillSubmitDto
|
|
68
68
|
*/
|
|
69
|
-
'applicantCode'
|
|
69
|
+
'applicantCode': string;
|
|
70
70
|
/**
|
|
71
71
|
* 执行主体
|
|
72
72
|
* @type {string}
|
|
73
73
|
* @memberof ReimbursementBillSubmitDto
|
|
74
74
|
*/
|
|
75
|
-
'executionSubject'
|
|
75
|
+
'executionSubject': string;
|
|
76
76
|
/**
|
|
77
77
|
* 预算主体
|
|
78
78
|
* @type {string}
|
|
79
79
|
* @memberof ReimbursementBillSubmitDto
|
|
80
80
|
*/
|
|
81
|
-
'budgetSubject'
|
|
81
|
+
'budgetSubject': string;
|
|
82
82
|
/**
|
|
83
83
|
*
|
|
84
84
|
* @type {PaymentMethodEnum}
|
|
@@ -108,7 +108,7 @@ export interface ReimbursementBillSubmitDto {
|
|
|
108
108
|
* @type {string}
|
|
109
109
|
* @memberof ReimbursementBillSubmitDto
|
|
110
110
|
*/
|
|
111
|
-
'supplierName'
|
|
111
|
+
'supplierName': string;
|
|
112
112
|
/**
|
|
113
113
|
* 收款银行开户行编码
|
|
114
114
|
* @type {string}
|
|
@@ -34,32 +34,32 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
34
34
|
* @type {number}
|
|
35
35
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
36
36
|
*/
|
|
37
|
-
'
|
|
37
|
+
'pages'?: number;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {boolean}
|
|
41
41
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
42
|
+
* @deprecated
|
|
42
43
|
*/
|
|
43
|
-
'
|
|
44
|
+
'hitCount'?: boolean;
|
|
44
45
|
/**
|
|
45
46
|
*
|
|
46
|
-
* @type {
|
|
47
|
+
* @type {Array<EnergyCostRecordInfoVO>}
|
|
47
48
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
48
49
|
*/
|
|
49
|
-
'
|
|
50
|
+
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
50
51
|
/**
|
|
51
52
|
*
|
|
52
53
|
* @type {number}
|
|
53
54
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
54
55
|
*/
|
|
55
|
-
'
|
|
56
|
+
'current'?: number;
|
|
56
57
|
/**
|
|
57
58
|
*
|
|
58
59
|
* @type {boolean}
|
|
59
60
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
60
|
-
* @deprecated
|
|
61
61
|
*/
|
|
62
|
-
'
|
|
62
|
+
'searchCount'?: boolean;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|
|
@@ -134,6 +134,12 @@ export interface ReimbursementBillDetailsVo {
|
|
|
134
134
|
* @memberof ReimbursementBillDetailsVo
|
|
135
135
|
*/
|
|
136
136
|
'supplierName'?: string;
|
|
137
|
+
/**
|
|
138
|
+
* 收款银行开户行编码
|
|
139
|
+
* @type {string}
|
|
140
|
+
* @memberof ReimbursementBillDetailsVo
|
|
141
|
+
*/
|
|
142
|
+
'payeeBankCode'?: string;
|
|
137
143
|
/**
|
|
138
144
|
* 收款方银行账号
|
|
139
145
|
* @type {string}
|
|
@@ -73,25 +73,25 @@ export interface ReimbursementBillSubmitDto {
|
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof ReimbursementBillSubmitDto
|
|
75
75
|
*/
|
|
76
|
-
'applicantName'
|
|
76
|
+
'applicantName': string;
|
|
77
77
|
/**
|
|
78
78
|
* 申请人编码
|
|
79
79
|
* @type {string}
|
|
80
80
|
* @memberof ReimbursementBillSubmitDto
|
|
81
81
|
*/
|
|
82
|
-
'applicantCode'
|
|
82
|
+
'applicantCode': string;
|
|
83
83
|
/**
|
|
84
84
|
* 执行主体
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof ReimbursementBillSubmitDto
|
|
87
87
|
*/
|
|
88
|
-
'executionSubject'
|
|
88
|
+
'executionSubject': string;
|
|
89
89
|
/**
|
|
90
90
|
* 预算主体
|
|
91
91
|
* @type {string}
|
|
92
92
|
* @memberof ReimbursementBillSubmitDto
|
|
93
93
|
*/
|
|
94
|
-
'budgetSubject'
|
|
94
|
+
'budgetSubject': string;
|
|
95
95
|
/**
|
|
96
96
|
*
|
|
97
97
|
* @type {PaymentMethodEnum}
|
|
@@ -121,7 +121,7 @@ export interface ReimbursementBillSubmitDto {
|
|
|
121
121
|
* @type {string}
|
|
122
122
|
* @memberof ReimbursementBillSubmitDto
|
|
123
123
|
*/
|
|
124
|
-
'supplierName'
|
|
124
|
+
'supplierName': string;
|
|
125
125
|
/**
|
|
126
126
|
* 收款银行开户行编码
|
|
127
127
|
* @type {string}
|