@gizone/rrs-client 4.2.9-alpha.658 → 4.2.9-alpha.660

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 (43) hide show
  1. package/.openapi-generator/FILES +0 -1
  2. package/apis/reimbursement-bill-api.ts +296 -20
  3. package/dist/apis/reimbursement-bill-api.d.ts +169 -10
  4. package/dist/apis/reimbursement-bill-api.js +158 -15
  5. package/dist/esm/apis/reimbursement-bill-api.d.ts +169 -10
  6. package/dist/esm/apis/reimbursement-bill-api.js +158 -15
  7. package/dist/esm/models/index.d.ts +0 -1
  8. package/dist/esm/models/index.js +0 -1
  9. package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +6 -6
  10. package/dist/esm/models/payment-method-enum.d.ts +1 -2
  11. package/dist/esm/models/payment-method-enum.js +2 -3
  12. package/dist/esm/models/reimbursement-bill-details-vo.d.ts +12 -0
  13. package/dist/esm/models/reimbursement-bill-draft-dto.d.ts +12 -0
  14. package/dist/esm/models/reimbursement-bill-list-vo.d.ts +12 -0
  15. package/dist/esm/models/reimbursement-bill-submit-dto.d.ts +12 -0
  16. package/dist/esm/models/reimbursement-status-enum.d.ts +5 -3
  17. package/dist/esm/models/reimbursement-status-enum.js +6 -4
  18. package/dist/models/index.d.ts +0 -1
  19. package/dist/models/index.js +0 -1
  20. package/dist/models/ipage-energy-cost-record-info-vo.d.ts +6 -6
  21. package/dist/models/payment-method-enum.d.ts +1 -2
  22. package/dist/models/payment-method-enum.js +2 -3
  23. package/dist/models/reimbursement-bill-details-vo.d.ts +12 -0
  24. package/dist/models/reimbursement-bill-draft-dto.d.ts +12 -0
  25. package/dist/models/reimbursement-bill-list-vo.d.ts +12 -0
  26. package/dist/models/reimbursement-bill-submit-dto.d.ts +12 -0
  27. package/dist/models/reimbursement-status-enum.d.ts +5 -3
  28. package/dist/models/reimbursement-status-enum.js +6 -4
  29. package/models/index.ts +0 -1
  30. package/models/ipage-energy-cost-record-info-vo.ts +6 -6
  31. package/models/payment-method-enum.ts +2 -3
  32. package/models/reimbursement-bill-details-vo.ts +12 -0
  33. package/models/reimbursement-bill-draft-dto.ts +12 -0
  34. package/models/reimbursement-bill-list-vo.ts +12 -0
  35. package/models/reimbursement-bill-submit-dto.ts +12 -0
  36. package/models/reimbursement-status-enum.ts +6 -4
  37. package/ossutil.log +1191 -1185
  38. package/package.json +1 -1
  39. package/dist/esm/models/reimbursement-bill-search-dto.d.ts +0 -68
  40. package/dist/esm/models/reimbursement-bill-search-dto.js +0 -14
  41. package/dist/models/reimbursement-bill-search-dto.d.ts +0 -68
  42. package/dist/models/reimbursement-bill-search-dto.js +0 -15
  43. package/models/reimbursement-bill-search-dto.ts +0 -78
@@ -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,19 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration?: C
214
289
  /**
215
290
  * 查询报账单列表
216
291
  * @summary 查询报账单列表
217
- * @param {ReimbursementBillSearchDto} dto
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] 账单状态
300
+ * @param {string} [scenarioAllocated] 是否已进行场景分摊
218
301
  * @param {*} [options] Override http request option.
219
302
  * @throws {RequiredError}
220
303
  */
221
- reimbursementBillSelectList: async (dto: ReimbursementBillSearchDto, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
222
- // verify required parameter 'dto' is not null or undefined
223
- assertParamExists('reimbursementBillSelectList', 'dto', dto)
304
+ reimbursementBillSelectList: async (parkId?: number, billCreateTimeStart?: string, billCreateTimeEnd?: string, expenseSubjects?: Array<ExpenseSubjectEnum>, page?: number, pageSize?: number, searchValue?: string, reimbursementStatuses?: Array<ReimbursementStatusEnum>, scenarioAllocated?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
224
305
  const localVarPath = `/gizone/reimbursement-bill`;
225
306
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
226
307
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -237,10 +318,44 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration?: C
237
318
  // http bearer authentication required
238
319
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
239
320
 
240
- if (dto !== undefined) {
241
- for (const [key, value] of Object.entries(dto)) {
242
- localVarQueryParameter[key] = value;
243
- }
321
+ if (parkId !== undefined) {
322
+ localVarQueryParameter['parkId'] = parkId;
323
+ }
324
+
325
+ if (billCreateTimeStart !== undefined) {
326
+ localVarQueryParameter['billCreateTimeStart'] = (billCreateTimeStart as any instanceof Date) ?
327
+ (billCreateTimeStart as any).toISOString() :
328
+ billCreateTimeStart;
329
+ }
330
+
331
+ if (billCreateTimeEnd !== undefined) {
332
+ localVarQueryParameter['billCreateTimeEnd'] = (billCreateTimeEnd as any instanceof Date) ?
333
+ (billCreateTimeEnd as any).toISOString() :
334
+ billCreateTimeEnd;
335
+ }
336
+
337
+ if (expenseSubjects) {
338
+ localVarQueryParameter['expenseSubjects'] = expenseSubjects;
339
+ }
340
+
341
+ if (page !== undefined) {
342
+ localVarQueryParameter['page'] = page;
343
+ }
344
+
345
+ if (pageSize !== undefined) {
346
+ localVarQueryParameter['pageSize'] = pageSize;
347
+ }
348
+
349
+ if (searchValue !== undefined) {
350
+ localVarQueryParameter['searchValue'] = searchValue;
351
+ }
352
+
353
+ if (reimbursementStatuses) {
354
+ localVarQueryParameter['reimbursementStatuses'] = reimbursementStatuses;
355
+ }
356
+
357
+ if (scenarioAllocated !== undefined) {
358
+ localVarQueryParameter['scenarioAllocated'] = scenarioAllocated;
244
359
  }
245
360
 
246
361
 
@@ -608,6 +723,25 @@ export const ReimbursementBillApiFp = function(configuration?: Configuration) {
608
723
  const localVarOperationServerBasePath = operationServerMap['ReimbursementBillApi.reimbursementBillDetails']?.[localVarOperationServerIndex]?.url;
609
724
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
610
725
  },
726
+ /**
727
+ *
728
+ * @summary 报账单导出
729
+ * @param {number} [parkId] 园区ID
730
+ * @param {string} [billCreateTimeStart] 报账单生成时间(开始)
731
+ * @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
732
+ * @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
733
+ * @param {string} [searchValue] 关键词
734
+ * @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
735
+ * @param {number} [isDraft] 是否导出草稿 0:否 1:是 默认0
736
+ * @param {*} [options] Override http request option.
737
+ * @throws {RequiredError}
738
+ */
739
+ 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>> {
740
+ const localVarAxiosArgs = await localVarAxiosParamCreator.reimbursementBillExport(parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, searchValue, reimbursementStatuses, isDraft, options);
741
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
742
+ const localVarOperationServerBasePath = operationServerMap['ReimbursementBillApi.reimbursementBillExport']?.[localVarOperationServerIndex]?.url;
743
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
744
+ },
611
745
  /**
612
746
  *
613
747
  * @summary 查询报账单流转列表
@@ -637,12 +771,20 @@ export const ReimbursementBillApiFp = function(configuration?: Configuration) {
637
771
  /**
638
772
  * 查询报账单列表
639
773
  * @summary 查询报账单列表
640
- * @param {ReimbursementBillSearchDto} dto
774
+ * @param {number} [parkId] 园区ID
775
+ * @param {string} [billCreateTimeStart] 报账单生成时间(开始)
776
+ * @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
777
+ * @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
778
+ * @param {number} [page] 当前页
779
+ * @param {number} [pageSize] 每页条数
780
+ * @param {string} [searchValue] 关键词
781
+ * @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
782
+ * @param {string} [scenarioAllocated] 是否已进行场景分摊
641
783
  * @param {*} [options] Override http request option.
642
784
  * @throws {RequiredError}
643
785
  */
644
- async reimbursementBillSelectList(dto: ReimbursementBillSearchDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoReimbursementBillListVo>> {
645
- const localVarAxiosArgs = await localVarAxiosParamCreator.reimbursementBillSelectList(dto, options);
786
+ async reimbursementBillSelectList(parkId?: number, billCreateTimeStart?: string, billCreateTimeEnd?: string, expenseSubjects?: Array<ExpenseSubjectEnum>, page?: number, pageSize?: number, searchValue?: string, reimbursementStatuses?: Array<ReimbursementStatusEnum>, scenarioAllocated?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoReimbursementBillListVo>> {
787
+ const localVarAxiosArgs = await localVarAxiosParamCreator.reimbursementBillSelectList(parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, page, pageSize, searchValue, reimbursementStatuses, scenarioAllocated, options);
646
788
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
647
789
  const localVarOperationServerBasePath = operationServerMap['ReimbursementBillApi.reimbursementBillSelectList']?.[localVarOperationServerIndex]?.url;
648
790
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -781,6 +923,16 @@ export const ReimbursementBillApiFactory = function (configuration?: Configurati
781
923
  reimbursementBillDetails(requestParameters: ReimbursementBillApiReimbursementBillDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultReimbursementBillDetailsVo> {
782
924
  return localVarFp.reimbursementBillDetails(requestParameters.id, options).then((request) => request(axios, basePath));
783
925
  },
926
+ /**
927
+ *
928
+ * @summary 报账单导出
929
+ * @param {ReimbursementBillApiReimbursementBillExportRequest} requestParameters Request parameters.
930
+ * @param {*} [options] Override http request option.
931
+ * @throws {RequiredError}
932
+ */
933
+ reimbursementBillExport(requestParameters: ReimbursementBillApiReimbursementBillExportRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<void> {
934
+ return localVarFp.reimbursementBillExport(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.searchValue, requestParameters.reimbursementStatuses, requestParameters.isDraft, options).then((request) => request(axios, basePath));
935
+ },
784
936
  /**
785
937
  *
786
938
  * @summary 查询报账单流转列表
@@ -808,8 +960,8 @@ export const ReimbursementBillApiFactory = function (configuration?: Configurati
808
960
  * @param {*} [options] Override http request option.
809
961
  * @throws {RequiredError}
810
962
  */
811
- reimbursementBillSelectList(requestParameters: ReimbursementBillApiReimbursementBillSelectListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoReimbursementBillListVo> {
812
- return localVarFp.reimbursementBillSelectList(requestParameters.dto, options).then((request) => request(axios, basePath));
963
+ reimbursementBillSelectList(requestParameters: ReimbursementBillApiReimbursementBillSelectListRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoReimbursementBillListVo> {
964
+ return localVarFp.reimbursementBillSelectList(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.reimbursementStatuses, requestParameters.scenarioAllocated, options).then((request) => request(axios, basePath));
813
965
  },
814
966
  /**
815
967
  * 提交报账单
@@ -920,6 +1072,62 @@ export interface ReimbursementBillApiReimbursementBillDetailsRequest {
920
1072
  readonly id: number
921
1073
  }
922
1074
 
1075
+ /**
1076
+ * Request parameters for reimbursementBillExport operation in ReimbursementBillApi.
1077
+ * @export
1078
+ * @interface ReimbursementBillApiReimbursementBillExportRequest
1079
+ */
1080
+ export interface ReimbursementBillApiReimbursementBillExportRequest {
1081
+ /**
1082
+ * 园区ID
1083
+ * @type {number}
1084
+ * @memberof ReimbursementBillApiReimbursementBillExport
1085
+ */
1086
+ readonly parkId?: number
1087
+
1088
+ /**
1089
+ * 报账单生成时间(开始)
1090
+ * @type {string}
1091
+ * @memberof ReimbursementBillApiReimbursementBillExport
1092
+ */
1093
+ readonly billCreateTimeStart?: string
1094
+
1095
+ /**
1096
+ * 报账单生成时间(结束)
1097
+ * @type {string}
1098
+ * @memberof ReimbursementBillApiReimbursementBillExport
1099
+ */
1100
+ readonly billCreateTimeEnd?: string
1101
+
1102
+ /**
1103
+ * 费用科目
1104
+ * @type {Array<ExpenseSubjectEnum>}
1105
+ * @memberof ReimbursementBillApiReimbursementBillExport
1106
+ */
1107
+ readonly expenseSubjects?: Array<ExpenseSubjectEnum>
1108
+
1109
+ /**
1110
+ * 关键词
1111
+ * @type {string}
1112
+ * @memberof ReimbursementBillApiReimbursementBillExport
1113
+ */
1114
+ readonly searchValue?: string
1115
+
1116
+ /**
1117
+ * 账单状态
1118
+ * @type {Array<ReimbursementStatusEnum>}
1119
+ * @memberof ReimbursementBillApiReimbursementBillExport
1120
+ */
1121
+ readonly reimbursementStatuses?: Array<ReimbursementStatusEnum>
1122
+
1123
+ /**
1124
+ * 是否导出草稿 0:否 1:是 默认0
1125
+ * @type {number}
1126
+ * @memberof ReimbursementBillApiReimbursementBillExport
1127
+ */
1128
+ readonly isDraft?: number
1129
+ }
1130
+
923
1131
  /**
924
1132
  * Request parameters for reimbursementBillProcessRecordList operation in ReimbursementBillApi.
925
1133
  * @export
@@ -955,11 +1163,67 @@ export interface ReimbursementBillApiReimbursementBillSaveDraftRequest {
955
1163
  */
956
1164
  export interface ReimbursementBillApiReimbursementBillSelectListRequest {
957
1165
  /**
958
- *
959
- * @type {ReimbursementBillSearchDto}
1166
+ * 园区ID
1167
+ * @type {number}
1168
+ * @memberof ReimbursementBillApiReimbursementBillSelectList
1169
+ */
1170
+ readonly parkId?: number
1171
+
1172
+ /**
1173
+ * 报账单生成时间(开始)
1174
+ * @type {string}
1175
+ * @memberof ReimbursementBillApiReimbursementBillSelectList
1176
+ */
1177
+ readonly billCreateTimeStart?: string
1178
+
1179
+ /**
1180
+ * 报账单生成时间(结束)
1181
+ * @type {string}
1182
+ * @memberof ReimbursementBillApiReimbursementBillSelectList
1183
+ */
1184
+ readonly billCreateTimeEnd?: string
1185
+
1186
+ /**
1187
+ * 费用科目
1188
+ * @type {Array<ExpenseSubjectEnum>}
1189
+ * @memberof ReimbursementBillApiReimbursementBillSelectList
1190
+ */
1191
+ readonly expenseSubjects?: Array<ExpenseSubjectEnum>
1192
+
1193
+ /**
1194
+ * 当前页
1195
+ * @type {number}
1196
+ * @memberof ReimbursementBillApiReimbursementBillSelectList
1197
+ */
1198
+ readonly page?: number
1199
+
1200
+ /**
1201
+ * 每页条数
1202
+ * @type {number}
960
1203
  * @memberof ReimbursementBillApiReimbursementBillSelectList
961
1204
  */
962
- readonly dto: ReimbursementBillSearchDto
1205
+ readonly pageSize?: number
1206
+
1207
+ /**
1208
+ * 关键词
1209
+ * @type {string}
1210
+ * @memberof ReimbursementBillApiReimbursementBillSelectList
1211
+ */
1212
+ readonly searchValue?: string
1213
+
1214
+ /**
1215
+ * 账单状态
1216
+ * @type {Array<ReimbursementStatusEnum>}
1217
+ * @memberof ReimbursementBillApiReimbursementBillSelectList
1218
+ */
1219
+ readonly reimbursementStatuses?: Array<ReimbursementStatusEnum>
1220
+
1221
+ /**
1222
+ * 是否已进行场景分摊
1223
+ * @type {string}
1224
+ * @memberof ReimbursementBillApiReimbursementBillSelectList
1225
+ */
1226
+ readonly scenarioAllocated?: string
963
1227
  }
964
1228
 
965
1229
  /**
@@ -1091,6 +1355,18 @@ export class ReimbursementBillApi extends BaseAPI {
1091
1355
  return ReimbursementBillApiFp(this.configuration).reimbursementBillDetails(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
1092
1356
  }
1093
1357
 
1358
+ /**
1359
+ *
1360
+ * @summary 报账单导出
1361
+ * @param {ReimbursementBillApiReimbursementBillExportRequest} requestParameters Request parameters.
1362
+ * @param {*} [options] Override http request option.
1363
+ * @throws {RequiredError}
1364
+ * @memberof ReimbursementBillApi
1365
+ */
1366
+ public reimbursementBillExport(requestParameters: ReimbursementBillApiReimbursementBillExportRequest = {}, options?: RawAxiosRequestConfig) {
1367
+ 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));
1368
+ }
1369
+
1094
1370
  /**
1095
1371
  *
1096
1372
  * @summary 查询报账单流转列表
@@ -1123,8 +1399,8 @@ export class ReimbursementBillApi extends BaseAPI {
1123
1399
  * @throws {RequiredError}
1124
1400
  * @memberof ReimbursementBillApi
1125
1401
  */
1126
- public reimbursementBillSelectList(requestParameters: ReimbursementBillApiReimbursementBillSelectListRequest, options?: RawAxiosRequestConfig) {
1127
- return ReimbursementBillApiFp(this.configuration).reimbursementBillSelectList(requestParameters.dto, options).then((request) => request(this.axios, this.basePath));
1402
+ public reimbursementBillSelectList(requestParameters: ReimbursementBillApiReimbursementBillSelectListRequest = {}, options?: RawAxiosRequestConfig) {
1403
+ return ReimbursementBillApiFp(this.configuration).reimbursementBillSelectList(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.reimbursementStatuses, requestParameters.scenarioAllocated, options).then((request) => request(this.axios, this.basePath));
1128
1404
  }
1129
1405
 
1130
1406
  /**