@gizone/rrs-client 4.2.9-alpha.658 → 4.2.9-alpha.659
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 +0 -1
- package/apis/reimbursement-bill-api.ts +283 -20
- package/dist/apis/reimbursement-bill-api.d.ts +161 -10
- package/dist/apis/reimbursement-bill-api.js +153 -15
- package/dist/esm/apis/reimbursement-bill-api.d.ts +161 -10
- package/dist/esm/apis/reimbursement-bill-api.js +153 -15
- package/dist/esm/models/index.d.ts +0 -1
- package/dist/esm/models/index.js +0 -1
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
- package/dist/esm/models/reimbursement-status-enum.d.ts +1 -1
- package/dist/esm/models/reimbursement-status-enum.js +1 -1
- package/dist/models/index.d.ts +0 -1
- package/dist/models/index.js +0 -1
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
- package/dist/models/reimbursement-status-enum.d.ts +1 -1
- package/dist/models/reimbursement-status-enum.js +1 -1
- package/models/index.ts +0 -1
- package/models/ipage-energy-cost-record-info-vo.ts +7 -7
- package/models/reimbursement-status-enum.ts +1 -1
- package/ossutil.log +1188 -1185
- package/package.json +1 -1
- package/dist/esm/models/reimbursement-bill-search-dto.d.ts +0 -68
- package/dist/esm/models/reimbursement-bill-search-dto.js +0 -14
- package/dist/models/reimbursement-bill-search-dto.d.ts +0 -68
- package/dist/models/reimbursement-bill-search-dto.js +0 -15
- package/models/reimbursement-bill-search-dto.ts +0 -78
package/.openapi-generator/FILES
CHANGED
|
@@ -537,7 +537,6 @@ models/reimbursement-bill-list-vo.ts
|
|
|
537
537
|
models/reimbursement-bill-payer-vo.ts
|
|
538
538
|
models/reimbursement-bill-process-record-list-vo.ts
|
|
539
539
|
models/reimbursement-bill-process-type-enum.ts
|
|
540
|
-
models/reimbursement-bill-search-dto.ts
|
|
541
540
|
models/reimbursement-bill-submit-dto.ts
|
|
542
541
|
models/reimbursement-create-result-dto.ts
|
|
543
542
|
models/reimbursement-platform-status-dto.ts
|
|
@@ -24,6 +24,8 @@ import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError
|
|
|
24
24
|
// @ts-ignore
|
|
25
25
|
import type { BudgetBalanceQueryDto } from '../models';
|
|
26
26
|
// @ts-ignore
|
|
27
|
+
import type { ExpenseSubjectEnum } from '../models';
|
|
28
|
+
// @ts-ignore
|
|
27
29
|
import type { JsonResultBoolean } from '../models';
|
|
28
30
|
// @ts-ignore
|
|
29
31
|
import type { JsonResultCzyBudgetBalanceVo } from '../models';
|
|
@@ -48,9 +50,9 @@ import type { JsonResultReimbursementBillDetailsVo } from '../models';
|
|
|
48
50
|
// @ts-ignore
|
|
49
51
|
import type { ReimbursementBillDraftDto } from '../models';
|
|
50
52
|
// @ts-ignore
|
|
51
|
-
import type { ReimbursementBillSearchDto } from '../models';
|
|
52
|
-
// @ts-ignore
|
|
53
53
|
import type { ReimbursementBillSubmitDto } from '../models';
|
|
54
|
+
// @ts-ignore
|
|
55
|
+
import type { ReimbursementStatusEnum } from '../models';
|
|
54
56
|
/**
|
|
55
57
|
* ReimbursementBillApi - axios parameter creator
|
|
56
58
|
* @export
|
|
@@ -124,6 +126,79 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration?: C
|
|
|
124
126
|
|
|
125
127
|
|
|
126
128
|
|
|
129
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
130
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
131
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
132
|
+
|
|
133
|
+
return {
|
|
134
|
+
url: toPathString(localVarUrlObj),
|
|
135
|
+
options: localVarRequestOptions,
|
|
136
|
+
};
|
|
137
|
+
},
|
|
138
|
+
/**
|
|
139
|
+
*
|
|
140
|
+
* @summary 报账单导出
|
|
141
|
+
* @param {number} [parkId] 园区ID
|
|
142
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
143
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
144
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
145
|
+
* @param {string} [searchValue] 关键词
|
|
146
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
147
|
+
* @param {number} [isDraft] 是否导出草稿 0:否 1:是 默认0
|
|
148
|
+
* @param {*} [options] Override http request option.
|
|
149
|
+
* @throws {RequiredError}
|
|
150
|
+
*/
|
|
151
|
+
reimbursementBillExport: async (parkId?: number, billCreateTimeStart?: string, billCreateTimeEnd?: string, expenseSubjects?: Array<ExpenseSubjectEnum>, searchValue?: string, reimbursementStatuses?: Array<ReimbursementStatusEnum>, isDraft?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
152
|
+
const localVarPath = `/gizone/reimbursement-bill/export`;
|
|
153
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
154
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
155
|
+
let baseOptions;
|
|
156
|
+
if (configuration) {
|
|
157
|
+
baseOptions = configuration.baseOptions;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
161
|
+
const localVarHeaderParameter = {} as any;
|
|
162
|
+
const localVarQueryParameter = {} as any;
|
|
163
|
+
|
|
164
|
+
// authentication tokenScheme required
|
|
165
|
+
// http bearer authentication required
|
|
166
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
167
|
+
|
|
168
|
+
if (parkId !== undefined) {
|
|
169
|
+
localVarQueryParameter['parkId'] = parkId;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
if (billCreateTimeStart !== undefined) {
|
|
173
|
+
localVarQueryParameter['billCreateTimeStart'] = (billCreateTimeStart as any instanceof Date) ?
|
|
174
|
+
(billCreateTimeStart as any).toISOString() :
|
|
175
|
+
billCreateTimeStart;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
if (billCreateTimeEnd !== undefined) {
|
|
179
|
+
localVarQueryParameter['billCreateTimeEnd'] = (billCreateTimeEnd as any instanceof Date) ?
|
|
180
|
+
(billCreateTimeEnd as any).toISOString() :
|
|
181
|
+
billCreateTimeEnd;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
if (expenseSubjects) {
|
|
185
|
+
localVarQueryParameter['expenseSubjects'] = expenseSubjects;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
if (searchValue !== undefined) {
|
|
189
|
+
localVarQueryParameter['searchValue'] = searchValue;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
if (reimbursementStatuses) {
|
|
193
|
+
localVarQueryParameter['reimbursementStatuses'] = reimbursementStatuses;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
if (isDraft !== undefined) {
|
|
197
|
+
localVarQueryParameter['isDraft'] = isDraft;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
127
202
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
128
203
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
129
204
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -214,13 +289,18 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration?: C
|
|
|
214
289
|
/**
|
|
215
290
|
* 查询报账单列表
|
|
216
291
|
* @summary 查询报账单列表
|
|
217
|
-
* @param {
|
|
292
|
+
* @param {number} [parkId] 园区ID
|
|
293
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
294
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
295
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
296
|
+
* @param {number} [page] 当前页
|
|
297
|
+
* @param {number} [pageSize] 每页条数
|
|
298
|
+
* @param {string} [searchValue] 关键词
|
|
299
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
218
300
|
* @param {*} [options] Override http request option.
|
|
219
301
|
* @throws {RequiredError}
|
|
220
302
|
*/
|
|
221
|
-
reimbursementBillSelectList: async (
|
|
222
|
-
// verify required parameter 'dto' is not null or undefined
|
|
223
|
-
assertParamExists('reimbursementBillSelectList', 'dto', dto)
|
|
303
|
+
reimbursementBillSelectList: async (parkId?: number, billCreateTimeStart?: string, billCreateTimeEnd?: string, expenseSubjects?: Array<ExpenseSubjectEnum>, page?: number, pageSize?: number, searchValue?: string, reimbursementStatuses?: Array<ReimbursementStatusEnum>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
224
304
|
const localVarPath = `/gizone/reimbursement-bill`;
|
|
225
305
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
226
306
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -237,10 +317,40 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration?: C
|
|
|
237
317
|
// http bearer authentication required
|
|
238
318
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
239
319
|
|
|
240
|
-
if (
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
320
|
+
if (parkId !== undefined) {
|
|
321
|
+
localVarQueryParameter['parkId'] = parkId;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
if (billCreateTimeStart !== undefined) {
|
|
325
|
+
localVarQueryParameter['billCreateTimeStart'] = (billCreateTimeStart as any instanceof Date) ?
|
|
326
|
+
(billCreateTimeStart as any).toISOString() :
|
|
327
|
+
billCreateTimeStart;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
if (billCreateTimeEnd !== undefined) {
|
|
331
|
+
localVarQueryParameter['billCreateTimeEnd'] = (billCreateTimeEnd as any instanceof Date) ?
|
|
332
|
+
(billCreateTimeEnd as any).toISOString() :
|
|
333
|
+
billCreateTimeEnd;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
if (expenseSubjects) {
|
|
337
|
+
localVarQueryParameter['expenseSubjects'] = expenseSubjects;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
if (page !== undefined) {
|
|
341
|
+
localVarQueryParameter['page'] = page;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
if (pageSize !== undefined) {
|
|
345
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
if (searchValue !== undefined) {
|
|
349
|
+
localVarQueryParameter['searchValue'] = searchValue;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
if (reimbursementStatuses) {
|
|
353
|
+
localVarQueryParameter['reimbursementStatuses'] = reimbursementStatuses;
|
|
244
354
|
}
|
|
245
355
|
|
|
246
356
|
|
|
@@ -608,6 +718,25 @@ export const ReimbursementBillApiFp = function(configuration?: Configuration) {
|
|
|
608
718
|
const localVarOperationServerBasePath = operationServerMap['ReimbursementBillApi.reimbursementBillDetails']?.[localVarOperationServerIndex]?.url;
|
|
609
719
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
610
720
|
},
|
|
721
|
+
/**
|
|
722
|
+
*
|
|
723
|
+
* @summary 报账单导出
|
|
724
|
+
* @param {number} [parkId] 园区ID
|
|
725
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
726
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
727
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
728
|
+
* @param {string} [searchValue] 关键词
|
|
729
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
730
|
+
* @param {number} [isDraft] 是否导出草稿 0:否 1:是 默认0
|
|
731
|
+
* @param {*} [options] Override http request option.
|
|
732
|
+
* @throws {RequiredError}
|
|
733
|
+
*/
|
|
734
|
+
async reimbursementBillExport(parkId?: number, billCreateTimeStart?: string, billCreateTimeEnd?: string, expenseSubjects?: Array<ExpenseSubjectEnum>, searchValue?: string, reimbursementStatuses?: Array<ReimbursementStatusEnum>, isDraft?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
735
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.reimbursementBillExport(parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, searchValue, reimbursementStatuses, isDraft, options);
|
|
736
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
737
|
+
const localVarOperationServerBasePath = operationServerMap['ReimbursementBillApi.reimbursementBillExport']?.[localVarOperationServerIndex]?.url;
|
|
738
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
739
|
+
},
|
|
611
740
|
/**
|
|
612
741
|
*
|
|
613
742
|
* @summary 查询报账单流转列表
|
|
@@ -637,12 +766,19 @@ export const ReimbursementBillApiFp = function(configuration?: Configuration) {
|
|
|
637
766
|
/**
|
|
638
767
|
* 查询报账单列表
|
|
639
768
|
* @summary 查询报账单列表
|
|
640
|
-
* @param {
|
|
769
|
+
* @param {number} [parkId] 园区ID
|
|
770
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
771
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
772
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
773
|
+
* @param {number} [page] 当前页
|
|
774
|
+
* @param {number} [pageSize] 每页条数
|
|
775
|
+
* @param {string} [searchValue] 关键词
|
|
776
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
641
777
|
* @param {*} [options] Override http request option.
|
|
642
778
|
* @throws {RequiredError}
|
|
643
779
|
*/
|
|
644
|
-
async reimbursementBillSelectList(
|
|
645
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.reimbursementBillSelectList(
|
|
780
|
+
async reimbursementBillSelectList(parkId?: number, billCreateTimeStart?: string, billCreateTimeEnd?: string, expenseSubjects?: Array<ExpenseSubjectEnum>, page?: number, pageSize?: number, searchValue?: string, reimbursementStatuses?: Array<ReimbursementStatusEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoReimbursementBillListVo>> {
|
|
781
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.reimbursementBillSelectList(parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, page, pageSize, searchValue, reimbursementStatuses, options);
|
|
646
782
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
647
783
|
const localVarOperationServerBasePath = operationServerMap['ReimbursementBillApi.reimbursementBillSelectList']?.[localVarOperationServerIndex]?.url;
|
|
648
784
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -781,6 +917,16 @@ export const ReimbursementBillApiFactory = function (configuration?: Configurati
|
|
|
781
917
|
reimbursementBillDetails(requestParameters: ReimbursementBillApiReimbursementBillDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultReimbursementBillDetailsVo> {
|
|
782
918
|
return localVarFp.reimbursementBillDetails(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
783
919
|
},
|
|
920
|
+
/**
|
|
921
|
+
*
|
|
922
|
+
* @summary 报账单导出
|
|
923
|
+
* @param {ReimbursementBillApiReimbursementBillExportRequest} requestParameters Request parameters.
|
|
924
|
+
* @param {*} [options] Override http request option.
|
|
925
|
+
* @throws {RequiredError}
|
|
926
|
+
*/
|
|
927
|
+
reimbursementBillExport(requestParameters: ReimbursementBillApiReimbursementBillExportRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
928
|
+
return localVarFp.reimbursementBillExport(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.searchValue, requestParameters.reimbursementStatuses, requestParameters.isDraft, options).then((request) => request(axios, basePath));
|
|
929
|
+
},
|
|
784
930
|
/**
|
|
785
931
|
*
|
|
786
932
|
* @summary 查询报账单流转列表
|
|
@@ -808,8 +954,8 @@ export const ReimbursementBillApiFactory = function (configuration?: Configurati
|
|
|
808
954
|
* @param {*} [options] Override http request option.
|
|
809
955
|
* @throws {RequiredError}
|
|
810
956
|
*/
|
|
811
|
-
reimbursementBillSelectList(requestParameters: ReimbursementBillApiReimbursementBillSelectListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoReimbursementBillListVo> {
|
|
812
|
-
return localVarFp.reimbursementBillSelectList(requestParameters.
|
|
957
|
+
reimbursementBillSelectList(requestParameters: ReimbursementBillApiReimbursementBillSelectListRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoReimbursementBillListVo> {
|
|
958
|
+
return localVarFp.reimbursementBillSelectList(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.reimbursementStatuses, options).then((request) => request(axios, basePath));
|
|
813
959
|
},
|
|
814
960
|
/**
|
|
815
961
|
* 提交报账单
|
|
@@ -920,6 +1066,62 @@ export interface ReimbursementBillApiReimbursementBillDetailsRequest {
|
|
|
920
1066
|
readonly id: number
|
|
921
1067
|
}
|
|
922
1068
|
|
|
1069
|
+
/**
|
|
1070
|
+
* Request parameters for reimbursementBillExport operation in ReimbursementBillApi.
|
|
1071
|
+
* @export
|
|
1072
|
+
* @interface ReimbursementBillApiReimbursementBillExportRequest
|
|
1073
|
+
*/
|
|
1074
|
+
export interface ReimbursementBillApiReimbursementBillExportRequest {
|
|
1075
|
+
/**
|
|
1076
|
+
* 园区ID
|
|
1077
|
+
* @type {number}
|
|
1078
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
1079
|
+
*/
|
|
1080
|
+
readonly parkId?: number
|
|
1081
|
+
|
|
1082
|
+
/**
|
|
1083
|
+
* 报账单生成时间(开始)
|
|
1084
|
+
* @type {string}
|
|
1085
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
1086
|
+
*/
|
|
1087
|
+
readonly billCreateTimeStart?: string
|
|
1088
|
+
|
|
1089
|
+
/**
|
|
1090
|
+
* 报账单生成时间(结束)
|
|
1091
|
+
* @type {string}
|
|
1092
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
1093
|
+
*/
|
|
1094
|
+
readonly billCreateTimeEnd?: string
|
|
1095
|
+
|
|
1096
|
+
/**
|
|
1097
|
+
* 费用科目
|
|
1098
|
+
* @type {Array<ExpenseSubjectEnum>}
|
|
1099
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
1100
|
+
*/
|
|
1101
|
+
readonly expenseSubjects?: Array<ExpenseSubjectEnum>
|
|
1102
|
+
|
|
1103
|
+
/**
|
|
1104
|
+
* 关键词
|
|
1105
|
+
* @type {string}
|
|
1106
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
1107
|
+
*/
|
|
1108
|
+
readonly searchValue?: string
|
|
1109
|
+
|
|
1110
|
+
/**
|
|
1111
|
+
* 账单状态
|
|
1112
|
+
* @type {Array<ReimbursementStatusEnum>}
|
|
1113
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
1114
|
+
*/
|
|
1115
|
+
readonly reimbursementStatuses?: Array<ReimbursementStatusEnum>
|
|
1116
|
+
|
|
1117
|
+
/**
|
|
1118
|
+
* 是否导出草稿 0:否 1:是 默认0
|
|
1119
|
+
* @type {number}
|
|
1120
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
1121
|
+
*/
|
|
1122
|
+
readonly isDraft?: number
|
|
1123
|
+
}
|
|
1124
|
+
|
|
923
1125
|
/**
|
|
924
1126
|
* Request parameters for reimbursementBillProcessRecordList operation in ReimbursementBillApi.
|
|
925
1127
|
* @export
|
|
@@ -955,11 +1157,60 @@ export interface ReimbursementBillApiReimbursementBillSaveDraftRequest {
|
|
|
955
1157
|
*/
|
|
956
1158
|
export interface ReimbursementBillApiReimbursementBillSelectListRequest {
|
|
957
1159
|
/**
|
|
958
|
-
*
|
|
959
|
-
* @type {
|
|
1160
|
+
* 园区ID
|
|
1161
|
+
* @type {number}
|
|
1162
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
1163
|
+
*/
|
|
1164
|
+
readonly parkId?: number
|
|
1165
|
+
|
|
1166
|
+
/**
|
|
1167
|
+
* 报账单生成时间(开始)
|
|
1168
|
+
* @type {string}
|
|
1169
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
1170
|
+
*/
|
|
1171
|
+
readonly billCreateTimeStart?: string
|
|
1172
|
+
|
|
1173
|
+
/**
|
|
1174
|
+
* 报账单生成时间(结束)
|
|
1175
|
+
* @type {string}
|
|
1176
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
1177
|
+
*/
|
|
1178
|
+
readonly billCreateTimeEnd?: string
|
|
1179
|
+
|
|
1180
|
+
/**
|
|
1181
|
+
* 费用科目
|
|
1182
|
+
* @type {Array<ExpenseSubjectEnum>}
|
|
960
1183
|
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
961
1184
|
*/
|
|
962
|
-
readonly
|
|
1185
|
+
readonly expenseSubjects?: Array<ExpenseSubjectEnum>
|
|
1186
|
+
|
|
1187
|
+
/**
|
|
1188
|
+
* 当前页
|
|
1189
|
+
* @type {number}
|
|
1190
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
1191
|
+
*/
|
|
1192
|
+
readonly page?: number
|
|
1193
|
+
|
|
1194
|
+
/**
|
|
1195
|
+
* 每页条数
|
|
1196
|
+
* @type {number}
|
|
1197
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
1198
|
+
*/
|
|
1199
|
+
readonly pageSize?: number
|
|
1200
|
+
|
|
1201
|
+
/**
|
|
1202
|
+
* 关键词
|
|
1203
|
+
* @type {string}
|
|
1204
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
1205
|
+
*/
|
|
1206
|
+
readonly searchValue?: string
|
|
1207
|
+
|
|
1208
|
+
/**
|
|
1209
|
+
* 账单状态
|
|
1210
|
+
* @type {Array<ReimbursementStatusEnum>}
|
|
1211
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
1212
|
+
*/
|
|
1213
|
+
readonly reimbursementStatuses?: Array<ReimbursementStatusEnum>
|
|
963
1214
|
}
|
|
964
1215
|
|
|
965
1216
|
/**
|
|
@@ -1091,6 +1342,18 @@ export class ReimbursementBillApi extends BaseAPI {
|
|
|
1091
1342
|
return ReimbursementBillApiFp(this.configuration).reimbursementBillDetails(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
1092
1343
|
}
|
|
1093
1344
|
|
|
1345
|
+
/**
|
|
1346
|
+
*
|
|
1347
|
+
* @summary 报账单导出
|
|
1348
|
+
* @param {ReimbursementBillApiReimbursementBillExportRequest} requestParameters Request parameters.
|
|
1349
|
+
* @param {*} [options] Override http request option.
|
|
1350
|
+
* @throws {RequiredError}
|
|
1351
|
+
* @memberof ReimbursementBillApi
|
|
1352
|
+
*/
|
|
1353
|
+
public reimbursementBillExport(requestParameters: ReimbursementBillApiReimbursementBillExportRequest = {}, options?: RawAxiosRequestConfig) {
|
|
1354
|
+
return ReimbursementBillApiFp(this.configuration).reimbursementBillExport(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.searchValue, requestParameters.reimbursementStatuses, requestParameters.isDraft, options).then((request) => request(this.axios, this.basePath));
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1094
1357
|
/**
|
|
1095
1358
|
*
|
|
1096
1359
|
* @summary 查询报账单流转列表
|
|
@@ -1123,8 +1386,8 @@ export class ReimbursementBillApi extends BaseAPI {
|
|
|
1123
1386
|
* @throws {RequiredError}
|
|
1124
1387
|
* @memberof ReimbursementBillApi
|
|
1125
1388
|
*/
|
|
1126
|
-
public reimbursementBillSelectList(requestParameters: ReimbursementBillApiReimbursementBillSelectListRequest, options?: RawAxiosRequestConfig) {
|
|
1127
|
-
return ReimbursementBillApiFp(this.configuration).reimbursementBillSelectList(requestParameters.
|
|
1389
|
+
public reimbursementBillSelectList(requestParameters: ReimbursementBillApiReimbursementBillSelectListRequest = {}, options?: RawAxiosRequestConfig) {
|
|
1390
|
+
return ReimbursementBillApiFp(this.configuration).reimbursementBillSelectList(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.reimbursementStatuses, options).then((request) => request(this.axios, this.basePath));
|
|
1128
1391
|
}
|
|
1129
1392
|
|
|
1130
1393
|
/**
|
|
@@ -13,6 +13,7 @@ import type { Configuration } from '../configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import type { BudgetBalanceQueryDto } from '../models';
|
|
16
|
+
import type { ExpenseSubjectEnum } from '../models';
|
|
16
17
|
import type { JsonResultBoolean } from '../models';
|
|
17
18
|
import type { JsonResultCzyBudgetBalanceVo } from '../models';
|
|
18
19
|
import type { JsonResultCzySystemOrganizationMemberDetailVo } from '../models';
|
|
@@ -25,8 +26,8 @@ import type { JsonResultListReimbursementBillProcessRecordListVo } from '../mode
|
|
|
25
26
|
import type { JsonResultPageDtoReimbursementBillListVo } from '../models';
|
|
26
27
|
import type { JsonResultReimbursementBillDetailsVo } from '../models';
|
|
27
28
|
import type { ReimbursementBillDraftDto } from '../models';
|
|
28
|
-
import type { ReimbursementBillSearchDto } from '../models';
|
|
29
29
|
import type { ReimbursementBillSubmitDto } from '../models';
|
|
30
|
+
import type { ReimbursementStatusEnum } from '../models';
|
|
30
31
|
/**
|
|
31
32
|
* ReimbursementBillApi - axios parameter creator
|
|
32
33
|
* @export
|
|
@@ -48,6 +49,20 @@ export declare const ReimbursementBillApiAxiosParamCreator: (configuration?: Con
|
|
|
48
49
|
* @throws {RequiredError}
|
|
49
50
|
*/
|
|
50
51
|
reimbursementBillDetails: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @summary 报账单导出
|
|
55
|
+
* @param {number} [parkId] 园区ID
|
|
56
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
57
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
58
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
59
|
+
* @param {string} [searchValue] 关键词
|
|
60
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
61
|
+
* @param {number} [isDraft] 是否导出草稿 0:否 1:是 默认0
|
|
62
|
+
* @param {*} [options] Override http request option.
|
|
63
|
+
* @throws {RequiredError}
|
|
64
|
+
*/
|
|
65
|
+
reimbursementBillExport: (parkId?: number, billCreateTimeStart?: string, billCreateTimeEnd?: string, expenseSubjects?: Array<ExpenseSubjectEnum>, searchValue?: string, reimbursementStatuses?: Array<ReimbursementStatusEnum>, isDraft?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51
66
|
/**
|
|
52
67
|
*
|
|
53
68
|
* @summary 查询报账单流转列表
|
|
@@ -67,11 +82,18 @@ export declare const ReimbursementBillApiAxiosParamCreator: (configuration?: Con
|
|
|
67
82
|
/**
|
|
68
83
|
* 查询报账单列表
|
|
69
84
|
* @summary 查询报账单列表
|
|
70
|
-
* @param {
|
|
85
|
+
* @param {number} [parkId] 园区ID
|
|
86
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
87
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
88
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
89
|
+
* @param {number} [page] 当前页
|
|
90
|
+
* @param {number} [pageSize] 每页条数
|
|
91
|
+
* @param {string} [searchValue] 关键词
|
|
92
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
71
93
|
* @param {*} [options] Override http request option.
|
|
72
94
|
* @throws {RequiredError}
|
|
73
95
|
*/
|
|
74
|
-
reimbursementBillSelectList: (
|
|
96
|
+
reimbursementBillSelectList: (parkId?: number, billCreateTimeStart?: string, billCreateTimeEnd?: string, expenseSubjects?: Array<ExpenseSubjectEnum>, page?: number, pageSize?: number, searchValue?: string, reimbursementStatuses?: Array<ReimbursementStatusEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
75
97
|
/**
|
|
76
98
|
* 提交报账单
|
|
77
99
|
* @summary 提交报账单
|
|
@@ -158,6 +180,20 @@ export declare const ReimbursementBillApiFp: (configuration?: Configuration) =>
|
|
|
158
180
|
* @throws {RequiredError}
|
|
159
181
|
*/
|
|
160
182
|
reimbursementBillDetails(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultReimbursementBillDetailsVo>>;
|
|
183
|
+
/**
|
|
184
|
+
*
|
|
185
|
+
* @summary 报账单导出
|
|
186
|
+
* @param {number} [parkId] 园区ID
|
|
187
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
188
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
189
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
190
|
+
* @param {string} [searchValue] 关键词
|
|
191
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
192
|
+
* @param {number} [isDraft] 是否导出草稿 0:否 1:是 默认0
|
|
193
|
+
* @param {*} [options] Override http request option.
|
|
194
|
+
* @throws {RequiredError}
|
|
195
|
+
*/
|
|
196
|
+
reimbursementBillExport(parkId?: number, billCreateTimeStart?: string, billCreateTimeEnd?: string, expenseSubjects?: Array<ExpenseSubjectEnum>, searchValue?: string, reimbursementStatuses?: Array<ReimbursementStatusEnum>, isDraft?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
161
197
|
/**
|
|
162
198
|
*
|
|
163
199
|
* @summary 查询报账单流转列表
|
|
@@ -177,11 +213,18 @@ export declare const ReimbursementBillApiFp: (configuration?: Configuration) =>
|
|
|
177
213
|
/**
|
|
178
214
|
* 查询报账单列表
|
|
179
215
|
* @summary 查询报账单列表
|
|
180
|
-
* @param {
|
|
216
|
+
* @param {number} [parkId] 园区ID
|
|
217
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
218
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
219
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
220
|
+
* @param {number} [page] 当前页
|
|
221
|
+
* @param {number} [pageSize] 每页条数
|
|
222
|
+
* @param {string} [searchValue] 关键词
|
|
223
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
181
224
|
* @param {*} [options] Override http request option.
|
|
182
225
|
* @throws {RequiredError}
|
|
183
226
|
*/
|
|
184
|
-
reimbursementBillSelectList(
|
|
227
|
+
reimbursementBillSelectList(parkId?: number, billCreateTimeStart?: string, billCreateTimeEnd?: string, expenseSubjects?: Array<ExpenseSubjectEnum>, page?: number, pageSize?: number, searchValue?: string, reimbursementStatuses?: Array<ReimbursementStatusEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoReimbursementBillListVo>>;
|
|
185
228
|
/**
|
|
186
229
|
* 提交报账单
|
|
187
230
|
* @summary 提交报账单
|
|
@@ -268,6 +311,14 @@ export declare const ReimbursementBillApiFactory: (configuration?: Configuration
|
|
|
268
311
|
* @throws {RequiredError}
|
|
269
312
|
*/
|
|
270
313
|
reimbursementBillDetails(requestParameters: ReimbursementBillApiReimbursementBillDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultReimbursementBillDetailsVo>;
|
|
314
|
+
/**
|
|
315
|
+
*
|
|
316
|
+
* @summary 报账单导出
|
|
317
|
+
* @param {ReimbursementBillApiReimbursementBillExportRequest} requestParameters Request parameters.
|
|
318
|
+
* @param {*} [options] Override http request option.
|
|
319
|
+
* @throws {RequiredError}
|
|
320
|
+
*/
|
|
321
|
+
reimbursementBillExport(requestParameters?: ReimbursementBillApiReimbursementBillExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
271
322
|
/**
|
|
272
323
|
*
|
|
273
324
|
* @summary 查询报账单流转列表
|
|
@@ -291,7 +342,7 @@ export declare const ReimbursementBillApiFactory: (configuration?: Configuration
|
|
|
291
342
|
* @param {*} [options] Override http request option.
|
|
292
343
|
* @throws {RequiredError}
|
|
293
344
|
*/
|
|
294
|
-
reimbursementBillSelectList(requestParameters
|
|
345
|
+
reimbursementBillSelectList(requestParameters?: ReimbursementBillApiReimbursementBillSelectListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoReimbursementBillListVo>;
|
|
295
346
|
/**
|
|
296
347
|
* 提交报账单
|
|
297
348
|
* @summary 提交报账单
|
|
@@ -381,6 +432,55 @@ export interface ReimbursementBillApiReimbursementBillDetailsRequest {
|
|
|
381
432
|
*/
|
|
382
433
|
readonly id: number;
|
|
383
434
|
}
|
|
435
|
+
/**
|
|
436
|
+
* Request parameters for reimbursementBillExport operation in ReimbursementBillApi.
|
|
437
|
+
* @export
|
|
438
|
+
* @interface ReimbursementBillApiReimbursementBillExportRequest
|
|
439
|
+
*/
|
|
440
|
+
export interface ReimbursementBillApiReimbursementBillExportRequest {
|
|
441
|
+
/**
|
|
442
|
+
* 园区ID
|
|
443
|
+
* @type {number}
|
|
444
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
445
|
+
*/
|
|
446
|
+
readonly parkId?: number;
|
|
447
|
+
/**
|
|
448
|
+
* 报账单生成时间(开始)
|
|
449
|
+
* @type {string}
|
|
450
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
451
|
+
*/
|
|
452
|
+
readonly billCreateTimeStart?: string;
|
|
453
|
+
/**
|
|
454
|
+
* 报账单生成时间(结束)
|
|
455
|
+
* @type {string}
|
|
456
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
457
|
+
*/
|
|
458
|
+
readonly billCreateTimeEnd?: string;
|
|
459
|
+
/**
|
|
460
|
+
* 费用科目
|
|
461
|
+
* @type {Array<ExpenseSubjectEnum>}
|
|
462
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
463
|
+
*/
|
|
464
|
+
readonly expenseSubjects?: Array<ExpenseSubjectEnum>;
|
|
465
|
+
/**
|
|
466
|
+
* 关键词
|
|
467
|
+
* @type {string}
|
|
468
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
469
|
+
*/
|
|
470
|
+
readonly searchValue?: string;
|
|
471
|
+
/**
|
|
472
|
+
* 账单状态
|
|
473
|
+
* @type {Array<ReimbursementStatusEnum>}
|
|
474
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
475
|
+
*/
|
|
476
|
+
readonly reimbursementStatuses?: Array<ReimbursementStatusEnum>;
|
|
477
|
+
/**
|
|
478
|
+
* 是否导出草稿 0:否 1:是 默认0
|
|
479
|
+
* @type {number}
|
|
480
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
481
|
+
*/
|
|
482
|
+
readonly isDraft?: number;
|
|
483
|
+
}
|
|
384
484
|
/**
|
|
385
485
|
* Request parameters for reimbursementBillProcessRecordList operation in ReimbursementBillApi.
|
|
386
486
|
* @export
|
|
@@ -414,11 +514,53 @@ export interface ReimbursementBillApiReimbursementBillSaveDraftRequest {
|
|
|
414
514
|
*/
|
|
415
515
|
export interface ReimbursementBillApiReimbursementBillSelectListRequest {
|
|
416
516
|
/**
|
|
417
|
-
*
|
|
418
|
-
* @type {
|
|
517
|
+
* 园区ID
|
|
518
|
+
* @type {number}
|
|
519
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
520
|
+
*/
|
|
521
|
+
readonly parkId?: number;
|
|
522
|
+
/**
|
|
523
|
+
* 报账单生成时间(开始)
|
|
524
|
+
* @type {string}
|
|
525
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
526
|
+
*/
|
|
527
|
+
readonly billCreateTimeStart?: string;
|
|
528
|
+
/**
|
|
529
|
+
* 报账单生成时间(结束)
|
|
530
|
+
* @type {string}
|
|
531
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
532
|
+
*/
|
|
533
|
+
readonly billCreateTimeEnd?: string;
|
|
534
|
+
/**
|
|
535
|
+
* 费用科目
|
|
536
|
+
* @type {Array<ExpenseSubjectEnum>}
|
|
537
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
538
|
+
*/
|
|
539
|
+
readonly expenseSubjects?: Array<ExpenseSubjectEnum>;
|
|
540
|
+
/**
|
|
541
|
+
* 当前页
|
|
542
|
+
* @type {number}
|
|
543
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
544
|
+
*/
|
|
545
|
+
readonly page?: number;
|
|
546
|
+
/**
|
|
547
|
+
* 每页条数
|
|
548
|
+
* @type {number}
|
|
549
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
550
|
+
*/
|
|
551
|
+
readonly pageSize?: number;
|
|
552
|
+
/**
|
|
553
|
+
* 关键词
|
|
554
|
+
* @type {string}
|
|
419
555
|
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
420
556
|
*/
|
|
421
|
-
readonly
|
|
557
|
+
readonly searchValue?: string;
|
|
558
|
+
/**
|
|
559
|
+
* 账单状态
|
|
560
|
+
* @type {Array<ReimbursementStatusEnum>}
|
|
561
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
562
|
+
*/
|
|
563
|
+
readonly reimbursementStatuses?: Array<ReimbursementStatusEnum>;
|
|
422
564
|
}
|
|
423
565
|
/**
|
|
424
566
|
* Request parameters for reimbursementBillSubmit operation in ReimbursementBillApi.
|
|
@@ -535,6 +677,15 @@ export declare class ReimbursementBillApi extends BaseAPI {
|
|
|
535
677
|
* @memberof ReimbursementBillApi
|
|
536
678
|
*/
|
|
537
679
|
reimbursementBillDetails(requestParameters: ReimbursementBillApiReimbursementBillDetailsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultReimbursementBillDetailsVo, any, {}>>;
|
|
680
|
+
/**
|
|
681
|
+
*
|
|
682
|
+
* @summary 报账单导出
|
|
683
|
+
* @param {ReimbursementBillApiReimbursementBillExportRequest} requestParameters Request parameters.
|
|
684
|
+
* @param {*} [options] Override http request option.
|
|
685
|
+
* @throws {RequiredError}
|
|
686
|
+
* @memberof ReimbursementBillApi
|
|
687
|
+
*/
|
|
688
|
+
reimbursementBillExport(requestParameters?: ReimbursementBillApiReimbursementBillExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
538
689
|
/**
|
|
539
690
|
*
|
|
540
691
|
* @summary 查询报账单流转列表
|
|
@@ -561,7 +712,7 @@ export declare class ReimbursementBillApi extends BaseAPI {
|
|
|
561
712
|
* @throws {RequiredError}
|
|
562
713
|
* @memberof ReimbursementBillApi
|
|
563
714
|
*/
|
|
564
|
-
reimbursementBillSelectList(requestParameters
|
|
715
|
+
reimbursementBillSelectList(requestParameters?: ReimbursementBillApiReimbursementBillSelectListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultPageDtoReimbursementBillListVo, any, {}>>;
|
|
565
716
|
/**
|
|
566
717
|
* 提交报账单
|
|
567
718
|
* @summary 提交报账单
|