@gizone/rrs-client 4.2.9-alpha.820 → 4.2.9-alpha.824

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.
@@ -602,11 +602,18 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration?: C
602
602
  /**
603
603
  *
604
604
  * @summary 系统组织-根据组织编码查询统一经办配置列表导入
605
+ * @param {string} performCode
606
+ * @param {ExpenseSubjectEnum} costItemCode
605
607
  * @param {File} file
608
+ * @param {string} [budgetOrgCode]
606
609
  * @param {*} [options] Override http request option.
607
610
  * @throws {RequiredError}
608
611
  */
609
- thirdCzyQueryFinancialUnificationHandleConfigImport: async (file: File, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
612
+ thirdCzyQueryFinancialUnificationHandleConfigImport: async (performCode: string, costItemCode: ExpenseSubjectEnum, file: File, budgetOrgCode?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
613
+ // verify required parameter 'performCode' is not null or undefined
614
+ assertParamExists('thirdCzyQueryFinancialUnificationHandleConfigImport', 'performCode', performCode)
615
+ // verify required parameter 'costItemCode' is not null or undefined
616
+ assertParamExists('thirdCzyQueryFinancialUnificationHandleConfigImport', 'costItemCode', costItemCode)
610
617
  // verify required parameter 'file' is not null or undefined
611
618
  assertParamExists('thirdCzyQueryFinancialUnificationHandleConfigImport', 'file', file)
612
619
  const localVarPath = `/gizone/reimbursement-bill/third/czy/system/organization/queryFinancialUnificationHandleConfig/import`;
@@ -626,6 +633,18 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration?: C
626
633
  // http bearer authentication required
627
634
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
628
635
 
636
+ if (budgetOrgCode !== undefined) {
637
+ localVarQueryParameter['budgetOrgCode'] = budgetOrgCode;
638
+ }
639
+
640
+ if (performCode !== undefined) {
641
+ localVarQueryParameter['performCode'] = performCode;
642
+ }
643
+
644
+ if (costItemCode !== undefined) {
645
+ localVarQueryParameter['costItemCode'] = costItemCode;
646
+ }
647
+
629
648
 
630
649
  if (file !== undefined) {
631
650
  localVarFormParams.append('file', file as any);
@@ -1015,12 +1034,15 @@ export const ReimbursementBillApiFp = function(configuration?: Configuration) {
1015
1034
  /**
1016
1035
  *
1017
1036
  * @summary 系统组织-根据组织编码查询统一经办配置列表导入
1037
+ * @param {string} performCode
1038
+ * @param {ExpenseSubjectEnum} costItemCode
1018
1039
  * @param {File} file
1040
+ * @param {string} [budgetOrgCode]
1019
1041
  * @param {*} [options] Override http request option.
1020
1042
  * @throws {RequiredError}
1021
1043
  */
1022
- async thirdCzyQueryFinancialUnificationHandleConfigImport(file: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListCzyOrganizationObjectExportVo>> {
1023
- const localVarAxiosArgs = await localVarAxiosParamCreator.thirdCzyQueryFinancialUnificationHandleConfigImport(file, options);
1044
+ async thirdCzyQueryFinancialUnificationHandleConfigImport(performCode: string, costItemCode: ExpenseSubjectEnum, file: File, budgetOrgCode?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListCzyOrganizationObjectExportVo>> {
1045
+ const localVarAxiosArgs = await localVarAxiosParamCreator.thirdCzyQueryFinancialUnificationHandleConfigImport(performCode, costItemCode, file, budgetOrgCode, options);
1024
1046
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1025
1047
  const localVarOperationServerBasePath = operationServerMap['ReimbursementBillApi.thirdCzyQueryFinancialUnificationHandleConfigImport']?.[localVarOperationServerIndex]?.url;
1026
1048
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1218,7 +1240,7 @@ export const ReimbursementBillApiFactory = function (configuration?: Configurati
1218
1240
  * @throws {RequiredError}
1219
1241
  */
1220
1242
  thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters: ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImportRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListCzyOrganizationObjectExportVo> {
1221
- return localVarFp.thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters.file, options).then((request) => request(axios, basePath));
1243
+ return localVarFp.thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters.performCode, requestParameters.costItemCode, requestParameters.file, requestParameters.budgetOrgCode, options).then((request) => request(axios, basePath));
1222
1244
  },
1223
1245
  /**
1224
1246
  *
@@ -1558,12 +1580,33 @@ export interface ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConf
1558
1580
  * @interface ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImportRequest
1559
1581
  */
1560
1582
  export interface ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImportRequest {
1583
+ /**
1584
+ *
1585
+ * @type {string}
1586
+ * @memberof ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImport
1587
+ */
1588
+ readonly performCode: string
1589
+
1590
+ /**
1591
+ *
1592
+ * @type {ExpenseSubjectEnum}
1593
+ * @memberof ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImport
1594
+ */
1595
+ readonly costItemCode: ExpenseSubjectEnum
1596
+
1561
1597
  /**
1562
1598
  *
1563
1599
  * @type {File}
1564
1600
  * @memberof ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImport
1565
1601
  */
1566
1602
  readonly file: File
1603
+
1604
+ /**
1605
+ *
1606
+ * @type {string}
1607
+ * @memberof ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImport
1608
+ */
1609
+ readonly budgetOrgCode?: string
1567
1610
  }
1568
1611
 
1569
1612
  /**
@@ -1777,7 +1820,7 @@ export class ReimbursementBillApi extends BaseAPI {
1777
1820
  * @memberof ReimbursementBillApi
1778
1821
  */
1779
1822
  public thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters: ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImportRequest, options?: RawAxiosRequestConfig) {
1780
- return ReimbursementBillApiFp(this.configuration).thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
1823
+ return ReimbursementBillApiFp(this.configuration).thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters.performCode, requestParameters.costItemCode, requestParameters.file, requestParameters.budgetOrgCode, options).then((request) => request(this.axios, this.basePath));
1781
1824
  }
1782
1825
 
1783
1826
  /**
@@ -145,11 +145,14 @@ export declare const ReimbursementBillApiAxiosParamCreator: (configuration?: Con
145
145
  /**
146
146
  *
147
147
  * @summary 系统组织-根据组织编码查询统一经办配置列表导入
148
+ * @param {string} performCode
149
+ * @param {ExpenseSubjectEnum} costItemCode
148
150
  * @param {File} file
151
+ * @param {string} [budgetOrgCode]
149
152
  * @param {*} [options] Override http request option.
150
153
  * @throws {RequiredError}
151
154
  */
152
- thirdCzyQueryFinancialUnificationHandleConfigImport: (file: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
155
+ thirdCzyQueryFinancialUnificationHandleConfigImport: (performCode: string, costItemCode: ExpenseSubjectEnum, file: File, budgetOrgCode?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
153
156
  /**
154
157
  *
155
158
  * @summary 系统组织-根据工号查询人员预算执行组织信息
@@ -305,11 +308,14 @@ export declare const ReimbursementBillApiFp: (configuration?: Configuration) =>
305
308
  /**
306
309
  *
307
310
  * @summary 系统组织-根据组织编码查询统一经办配置列表导入
311
+ * @param {string} performCode
312
+ * @param {ExpenseSubjectEnum} costItemCode
308
313
  * @param {File} file
314
+ * @param {string} [budgetOrgCode]
309
315
  * @param {*} [options] Override http request option.
310
316
  * @throws {RequiredError}
311
317
  */
312
- thirdCzyQueryFinancialUnificationHandleConfigImport(file: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListCzyOrganizationObjectExportVo>>;
318
+ thirdCzyQueryFinancialUnificationHandleConfigImport(performCode: string, costItemCode: ExpenseSubjectEnum, file: File, budgetOrgCode?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListCzyOrganizationObjectExportVo>>;
313
319
  /**
314
320
  *
315
321
  * @summary 系统组织-根据工号查询人员预算执行组织信息
@@ -749,12 +755,30 @@ export interface ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConf
749
755
  * @interface ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImportRequest
750
756
  */
751
757
  export interface ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImportRequest {
758
+ /**
759
+ *
760
+ * @type {string}
761
+ * @memberof ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImport
762
+ */
763
+ readonly performCode: string;
764
+ /**
765
+ *
766
+ * @type {ExpenseSubjectEnum}
767
+ * @memberof ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImport
768
+ */
769
+ readonly costItemCode: ExpenseSubjectEnum;
752
770
  /**
753
771
  *
754
772
  * @type {File}
755
773
  * @memberof ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImport
756
774
  */
757
775
  readonly file: File;
776
+ /**
777
+ *
778
+ * @type {string}
779
+ * @memberof ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImport
780
+ */
781
+ readonly budgetOrgCode?: string;
758
782
  }
759
783
  /**
760
784
  * Request parameters for thirdCzySystemOrganizationQueryMemberDetail operation in ReimbursementBillApi.
@@ -481,11 +481,18 @@ const ReimbursementBillApiAxiosParamCreator = function (configuration) {
481
481
  /**
482
482
  *
483
483
  * @summary 系统组织-根据组织编码查询统一经办配置列表导入
484
+ * @param {string} performCode
485
+ * @param {ExpenseSubjectEnum} costItemCode
484
486
  * @param {File} file
487
+ * @param {string} [budgetOrgCode]
485
488
  * @param {*} [options] Override http request option.
486
489
  * @throws {RequiredError}
487
490
  */
488
- thirdCzyQueryFinancialUnificationHandleConfigImport: (file_1, ...args_1) => __awaiter(this, [file_1, ...args_1], void 0, function* (file, options = {}) {
491
+ thirdCzyQueryFinancialUnificationHandleConfigImport: (performCode_1, costItemCode_1, file_1, budgetOrgCode_1, ...args_1) => __awaiter(this, [performCode_1, costItemCode_1, file_1, budgetOrgCode_1, ...args_1], void 0, function* (performCode, costItemCode, file, budgetOrgCode, options = {}) {
492
+ // verify required parameter 'performCode' is not null or undefined
493
+ (0, common_1.assertParamExists)('thirdCzyQueryFinancialUnificationHandleConfigImport', 'performCode', performCode);
494
+ // verify required parameter 'costItemCode' is not null or undefined
495
+ (0, common_1.assertParamExists)('thirdCzyQueryFinancialUnificationHandleConfigImport', 'costItemCode', costItemCode);
489
496
  // verify required parameter 'file' is not null or undefined
490
497
  (0, common_1.assertParamExists)('thirdCzyQueryFinancialUnificationHandleConfigImport', 'file', file);
491
498
  const localVarPath = `/gizone/reimbursement-bill/third/czy/system/organization/queryFinancialUnificationHandleConfig/import`;
@@ -502,6 +509,15 @@ const ReimbursementBillApiAxiosParamCreator = function (configuration) {
502
509
  // authentication tokenScheme required
503
510
  // http bearer authentication required
504
511
  yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
512
+ if (budgetOrgCode !== undefined) {
513
+ localVarQueryParameter['budgetOrgCode'] = budgetOrgCode;
514
+ }
515
+ if (performCode !== undefined) {
516
+ localVarQueryParameter['performCode'] = performCode;
517
+ }
518
+ if (costItemCode !== undefined) {
519
+ localVarQueryParameter['costItemCode'] = costItemCode;
520
+ }
505
521
  if (file !== undefined) {
506
522
  localVarFormParams.append('file', file);
507
523
  }
@@ -885,14 +901,17 @@ const ReimbursementBillApiFp = function (configuration) {
885
901
  /**
886
902
  *
887
903
  * @summary 系统组织-根据组织编码查询统一经办配置列表导入
904
+ * @param {string} performCode
905
+ * @param {ExpenseSubjectEnum} costItemCode
888
906
  * @param {File} file
907
+ * @param {string} [budgetOrgCode]
889
908
  * @param {*} [options] Override http request option.
890
909
  * @throws {RequiredError}
891
910
  */
892
- thirdCzyQueryFinancialUnificationHandleConfigImport(file, options) {
911
+ thirdCzyQueryFinancialUnificationHandleConfigImport(performCode, costItemCode, file, budgetOrgCode, options) {
893
912
  return __awaiter(this, void 0, void 0, function* () {
894
913
  var _a, _b, _c;
895
- const localVarAxiosArgs = yield localVarAxiosParamCreator.thirdCzyQueryFinancialUnificationHandleConfigImport(file, options);
914
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.thirdCzyQueryFinancialUnificationHandleConfigImport(performCode, costItemCode, file, budgetOrgCode, options);
896
915
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
897
916
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ReimbursementBillApi.thirdCzyQueryFinancialUnificationHandleConfigImport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
898
917
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1106,7 +1125,7 @@ const ReimbursementBillApiFactory = function (configuration, basePath, axios) {
1106
1125
  * @throws {RequiredError}
1107
1126
  */
1108
1127
  thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters, options) {
1109
- return localVarFp.thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters.file, options).then((request) => request(axios, basePath));
1128
+ return localVarFp.thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters.performCode, requestParameters.costItemCode, requestParameters.file, requestParameters.budgetOrgCode, options).then((request) => request(axios, basePath));
1110
1129
  },
1111
1130
  /**
1112
1131
  *
@@ -1297,7 +1316,7 @@ class ReimbursementBillApi extends base_1.BaseAPI {
1297
1316
  * @memberof ReimbursementBillApi
1298
1317
  */
1299
1318
  thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters, options) {
1300
- return (0, exports.ReimbursementBillApiFp)(this.configuration).thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
1319
+ return (0, exports.ReimbursementBillApiFp)(this.configuration).thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters.performCode, requestParameters.costItemCode, requestParameters.file, requestParameters.budgetOrgCode, options).then((request) => request(this.axios, this.basePath));
1301
1320
  }
1302
1321
  /**
1303
1322
  *
@@ -145,11 +145,14 @@ export declare const ReimbursementBillApiAxiosParamCreator: (configuration?: Con
145
145
  /**
146
146
  *
147
147
  * @summary 系统组织-根据组织编码查询统一经办配置列表导入
148
+ * @param {string} performCode
149
+ * @param {ExpenseSubjectEnum} costItemCode
148
150
  * @param {File} file
151
+ * @param {string} [budgetOrgCode]
149
152
  * @param {*} [options] Override http request option.
150
153
  * @throws {RequiredError}
151
154
  */
152
- thirdCzyQueryFinancialUnificationHandleConfigImport: (file: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
155
+ thirdCzyQueryFinancialUnificationHandleConfigImport: (performCode: string, costItemCode: ExpenseSubjectEnum, file: File, budgetOrgCode?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
153
156
  /**
154
157
  *
155
158
  * @summary 系统组织-根据工号查询人员预算执行组织信息
@@ -305,11 +308,14 @@ export declare const ReimbursementBillApiFp: (configuration?: Configuration) =>
305
308
  /**
306
309
  *
307
310
  * @summary 系统组织-根据组织编码查询统一经办配置列表导入
311
+ * @param {string} performCode
312
+ * @param {ExpenseSubjectEnum} costItemCode
308
313
  * @param {File} file
314
+ * @param {string} [budgetOrgCode]
309
315
  * @param {*} [options] Override http request option.
310
316
  * @throws {RequiredError}
311
317
  */
312
- thirdCzyQueryFinancialUnificationHandleConfigImport(file: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListCzyOrganizationObjectExportVo>>;
318
+ thirdCzyQueryFinancialUnificationHandleConfigImport(performCode: string, costItemCode: ExpenseSubjectEnum, file: File, budgetOrgCode?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListCzyOrganizationObjectExportVo>>;
313
319
  /**
314
320
  *
315
321
  * @summary 系统组织-根据工号查询人员预算执行组织信息
@@ -749,12 +755,30 @@ export interface ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConf
749
755
  * @interface ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImportRequest
750
756
  */
751
757
  export interface ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImportRequest {
758
+ /**
759
+ *
760
+ * @type {string}
761
+ * @memberof ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImport
762
+ */
763
+ readonly performCode: string;
764
+ /**
765
+ *
766
+ * @type {ExpenseSubjectEnum}
767
+ * @memberof ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImport
768
+ */
769
+ readonly costItemCode: ExpenseSubjectEnum;
752
770
  /**
753
771
  *
754
772
  * @type {File}
755
773
  * @memberof ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImport
756
774
  */
757
775
  readonly file: File;
776
+ /**
777
+ *
778
+ * @type {string}
779
+ * @memberof ReimbursementBillApiThirdCzyQueryFinancialUnificationHandleConfigImport
780
+ */
781
+ readonly budgetOrgCode?: string;
758
782
  }
759
783
  /**
760
784
  * Request parameters for thirdCzySystemOrganizationQueryMemberDetail operation in ReimbursementBillApi.
@@ -478,11 +478,18 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration) {
478
478
  /**
479
479
  *
480
480
  * @summary 系统组织-根据组织编码查询统一经办配置列表导入
481
+ * @param {string} performCode
482
+ * @param {ExpenseSubjectEnum} costItemCode
481
483
  * @param {File} file
484
+ * @param {string} [budgetOrgCode]
482
485
  * @param {*} [options] Override http request option.
483
486
  * @throws {RequiredError}
484
487
  */
485
- thirdCzyQueryFinancialUnificationHandleConfigImport: (file_1, ...args_1) => __awaiter(this, [file_1, ...args_1], void 0, function* (file, options = {}) {
488
+ thirdCzyQueryFinancialUnificationHandleConfigImport: (performCode_1, costItemCode_1, file_1, budgetOrgCode_1, ...args_1) => __awaiter(this, [performCode_1, costItemCode_1, file_1, budgetOrgCode_1, ...args_1], void 0, function* (performCode, costItemCode, file, budgetOrgCode, options = {}) {
489
+ // verify required parameter 'performCode' is not null or undefined
490
+ assertParamExists('thirdCzyQueryFinancialUnificationHandleConfigImport', 'performCode', performCode);
491
+ // verify required parameter 'costItemCode' is not null or undefined
492
+ assertParamExists('thirdCzyQueryFinancialUnificationHandleConfigImport', 'costItemCode', costItemCode);
486
493
  // verify required parameter 'file' is not null or undefined
487
494
  assertParamExists('thirdCzyQueryFinancialUnificationHandleConfigImport', 'file', file);
488
495
  const localVarPath = `/gizone/reimbursement-bill/third/czy/system/organization/queryFinancialUnificationHandleConfig/import`;
@@ -499,6 +506,15 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration) {
499
506
  // authentication tokenScheme required
500
507
  // http bearer authentication required
501
508
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
509
+ if (budgetOrgCode !== undefined) {
510
+ localVarQueryParameter['budgetOrgCode'] = budgetOrgCode;
511
+ }
512
+ if (performCode !== undefined) {
513
+ localVarQueryParameter['performCode'] = performCode;
514
+ }
515
+ if (costItemCode !== undefined) {
516
+ localVarQueryParameter['costItemCode'] = costItemCode;
517
+ }
502
518
  if (file !== undefined) {
503
519
  localVarFormParams.append('file', file);
504
520
  }
@@ -881,14 +897,17 @@ export const ReimbursementBillApiFp = function (configuration) {
881
897
  /**
882
898
  *
883
899
  * @summary 系统组织-根据组织编码查询统一经办配置列表导入
900
+ * @param {string} performCode
901
+ * @param {ExpenseSubjectEnum} costItemCode
884
902
  * @param {File} file
903
+ * @param {string} [budgetOrgCode]
885
904
  * @param {*} [options] Override http request option.
886
905
  * @throws {RequiredError}
887
906
  */
888
- thirdCzyQueryFinancialUnificationHandleConfigImport(file, options) {
907
+ thirdCzyQueryFinancialUnificationHandleConfigImport(performCode, costItemCode, file, budgetOrgCode, options) {
889
908
  return __awaiter(this, void 0, void 0, function* () {
890
909
  var _a, _b, _c;
891
- const localVarAxiosArgs = yield localVarAxiosParamCreator.thirdCzyQueryFinancialUnificationHandleConfigImport(file, options);
910
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.thirdCzyQueryFinancialUnificationHandleConfigImport(performCode, costItemCode, file, budgetOrgCode, options);
892
911
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
893
912
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ReimbursementBillApi.thirdCzyQueryFinancialUnificationHandleConfigImport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
894
913
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1101,7 +1120,7 @@ export const ReimbursementBillApiFactory = function (configuration, basePath, ax
1101
1120
  * @throws {RequiredError}
1102
1121
  */
1103
1122
  thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters, options) {
1104
- return localVarFp.thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters.file, options).then((request) => request(axios, basePath));
1123
+ return localVarFp.thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters.performCode, requestParameters.costItemCode, requestParameters.file, requestParameters.budgetOrgCode, options).then((request) => request(axios, basePath));
1105
1124
  },
1106
1125
  /**
1107
1126
  *
@@ -1291,7 +1310,7 @@ export class ReimbursementBillApi extends BaseAPI {
1291
1310
  * @memberof ReimbursementBillApi
1292
1311
  */
1293
1312
  thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters, options) {
1294
- return ReimbursementBillApiFp(this.configuration).thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
1313
+ return ReimbursementBillApiFp(this.configuration).thirdCzyQueryFinancialUnificationHandleConfigImport(requestParameters.performCode, requestParameters.costItemCode, requestParameters.file, requestParameters.budgetOrgCode, options).then((request) => request(this.axios, this.basePath));
1295
1314
  }
1296
1315
  /**
1297
1316
  *
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * 费用科目
13
+ *
14
14
  * @export
15
15
  * @enum {string}
16
16
  */
@@ -12,7 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
  /**
15
- * 费用科目
15
+ *
16
16
  * @export
17
17
  * @enum {string}
18
18
  */
@@ -38,9 +38,8 @@ export interface IPageEnergyCostRecordInfoVO {
38
38
  *
39
39
  * @type {boolean}
40
40
  * @memberof IPageEnergyCostRecordInfoVO
41
- * @deprecated
42
41
  */
43
- 'hitCount'?: boolean;
42
+ 'searchCount'?: boolean;
44
43
  /**
45
44
  *
46
45
  * @type {number}
@@ -51,8 +50,9 @@ export interface IPageEnergyCostRecordInfoVO {
51
50
  *
52
51
  * @type {boolean}
53
52
  * @memberof IPageEnergyCostRecordInfoVO
53
+ * @deprecated
54
54
  */
55
- 'searchCount'?: boolean;
55
+ 'hitCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -186,4 +186,10 @@ export interface MaintenanceOrderDetailsVo {
186
186
  * @memberof MaintenanceOrderDetailsVo
187
187
  */
188
188
  'maintenanceDailyWorkOrders'?: Array<MaintenanceDailyWorkOrderListDto>;
189
+ /**
190
+ * 资产系统的唯一编码
191
+ * @type {string}
192
+ * @memberof MaintenanceOrderDetailsVo
193
+ */
194
+ 'fmsFaultNo'?: string;
189
195
  }
@@ -119,4 +119,10 @@ export interface MaintenanceOrderListVo {
119
119
  * @memberof MaintenanceOrderListVo
120
120
  */
121
121
  'handlerUserName'?: string;
122
+ /**
123
+ * 资产系统的唯一编码
124
+ * @type {string}
125
+ * @memberof MaintenanceOrderListVo
126
+ */
127
+ 'fmsFaultNo'?: string;
122
128
  }
@@ -25,5 +25,6 @@ export declare const WorkOrderSettingsTypeEnum: {
25
25
  readonly MonitoringCoverageAlertWorkOrder: "MONITORING_COVERAGE_ALERT_WORK_ORDER";
26
26
  readonly DisasterWarningWorkOrder: "DISASTER_WARNING_WORK_ORDER";
27
27
  readonly ExplorationWorkOrder: "EXPLORATION_WORK_ORDER";
28
+ readonly MaintenanceDailyWorkOrder: "MAINTENANCE_DAILY_WORK_ORDER";
28
29
  };
29
30
  export type WorkOrderSettingsTypeEnum = typeof WorkOrderSettingsTypeEnum[keyof typeof WorkOrderSettingsTypeEnum];
@@ -26,5 +26,6 @@ export const WorkOrderSettingsTypeEnum = {
26
26
  OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
27
27
  MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
28
28
  DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER',
29
- ExplorationWorkOrder: 'EXPLORATION_WORK_ORDER'
29
+ ExplorationWorkOrder: 'EXPLORATION_WORK_ORDER',
30
+ MaintenanceDailyWorkOrder: 'MAINTENANCE_DAILY_WORK_ORDER'
30
31
  };
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * 费用科目
13
+ *
14
14
  * @export
15
15
  * @enum {string}
16
16
  */
@@ -15,7 +15,7 @@
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.ExpenseSubjectEnum = void 0;
17
17
  /**
18
- * 费用科目
18
+ *
19
19
  * @export
20
20
  * @enum {string}
21
21
  */
@@ -38,9 +38,8 @@ export interface IPageEnergyCostRecordInfoVO {
38
38
  *
39
39
  * @type {boolean}
40
40
  * @memberof IPageEnergyCostRecordInfoVO
41
- * @deprecated
42
41
  */
43
- 'hitCount'?: boolean;
42
+ 'searchCount'?: boolean;
44
43
  /**
45
44
  *
46
45
  * @type {number}
@@ -51,8 +50,9 @@ export interface IPageEnergyCostRecordInfoVO {
51
50
  *
52
51
  * @type {boolean}
53
52
  * @memberof IPageEnergyCostRecordInfoVO
53
+ * @deprecated
54
54
  */
55
- 'searchCount'?: boolean;
55
+ 'hitCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -186,4 +186,10 @@ export interface MaintenanceOrderDetailsVo {
186
186
  * @memberof MaintenanceOrderDetailsVo
187
187
  */
188
188
  'maintenanceDailyWorkOrders'?: Array<MaintenanceDailyWorkOrderListDto>;
189
+ /**
190
+ * 资产系统的唯一编码
191
+ * @type {string}
192
+ * @memberof MaintenanceOrderDetailsVo
193
+ */
194
+ 'fmsFaultNo'?: string;
189
195
  }
@@ -119,4 +119,10 @@ export interface MaintenanceOrderListVo {
119
119
  * @memberof MaintenanceOrderListVo
120
120
  */
121
121
  'handlerUserName'?: string;
122
+ /**
123
+ * 资产系统的唯一编码
124
+ * @type {string}
125
+ * @memberof MaintenanceOrderListVo
126
+ */
127
+ 'fmsFaultNo'?: string;
122
128
  }
@@ -25,5 +25,6 @@ export declare const WorkOrderSettingsTypeEnum: {
25
25
  readonly MonitoringCoverageAlertWorkOrder: "MONITORING_COVERAGE_ALERT_WORK_ORDER";
26
26
  readonly DisasterWarningWorkOrder: "DISASTER_WARNING_WORK_ORDER";
27
27
  readonly ExplorationWorkOrder: "EXPLORATION_WORK_ORDER";
28
+ readonly MaintenanceDailyWorkOrder: "MAINTENANCE_DAILY_WORK_ORDER";
28
29
  };
29
30
  export type WorkOrderSettingsTypeEnum = typeof WorkOrderSettingsTypeEnum[keyof typeof WorkOrderSettingsTypeEnum];
@@ -29,5 +29,6 @@ exports.WorkOrderSettingsTypeEnum = {
29
29
  OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
30
30
  MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
31
31
  DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER',
32
- ExplorationWorkOrder: 'EXPLORATION_WORK_ORDER'
32
+ ExplorationWorkOrder: 'EXPLORATION_WORK_ORDER',
33
+ MaintenanceDailyWorkOrder: 'MAINTENANCE_DAILY_WORK_ORDER'
33
34
  };
@@ -15,7 +15,7 @@
15
15
 
16
16
 
17
17
  /**
18
- * 费用科目
18
+ *
19
19
  * @export
20
20
  * @enum {string}
21
21
  */
@@ -45,9 +45,8 @@ export interface IPageEnergyCostRecordInfoVO {
45
45
  *
46
46
  * @type {boolean}
47
47
  * @memberof IPageEnergyCostRecordInfoVO
48
- * @deprecated
49
48
  */
50
- 'hitCount'?: boolean;
49
+ 'searchCount'?: boolean;
51
50
  /**
52
51
  *
53
52
  * @type {number}
@@ -58,8 +57,9 @@ export interface IPageEnergyCostRecordInfoVO {
58
57
  *
59
58
  * @type {boolean}
60
59
  * @memberof IPageEnergyCostRecordInfoVO
60
+ * @deprecated
61
61
  */
62
- 'searchCount'?: boolean;
62
+ 'hitCount'?: boolean;
63
63
  /**
64
64
  *
65
65
  * @type {number}
@@ -209,6 +209,12 @@ export interface MaintenanceOrderDetailsVo {
209
209
  * @memberof MaintenanceOrderDetailsVo
210
210
  */
211
211
  'maintenanceDailyWorkOrders'?: Array<MaintenanceDailyWorkOrderListDto>;
212
+ /**
213
+ * 资产系统的唯一编码
214
+ * @type {string}
215
+ * @memberof MaintenanceOrderDetailsVo
216
+ */
217
+ 'fmsFaultNo'?: string;
212
218
  }
213
219
 
214
220
 
@@ -128,6 +128,12 @@ export interface MaintenanceOrderListVo {
128
128
  * @memberof MaintenanceOrderListVo
129
129
  */
130
130
  'handlerUserName'?: string;
131
+ /**
132
+ * 资产系统的唯一编码
133
+ * @type {string}
134
+ * @memberof MaintenanceOrderListVo
135
+ */
136
+ 'fmsFaultNo'?: string;
131
137
  }
132
138
 
133
139
 
@@ -30,7 +30,8 @@ export const WorkOrderSettingsTypeEnum = {
30
30
  OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
31
31
  MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
32
32
  DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER',
33
- ExplorationWorkOrder: 'EXPLORATION_WORK_ORDER'
33
+ ExplorationWorkOrder: 'EXPLORATION_WORK_ORDER',
34
+ MaintenanceDailyWorkOrder: 'MAINTENANCE_DAILY_WORK_ORDER'
34
35
  } as const;
35
36
 
36
37
  export type WorkOrderSettingsTypeEnum = typeof WorkOrderSettingsTypeEnum[keyof typeof WorkOrderSettingsTypeEnum];