zhengyiming
2 天以前 f633483b97b38c2965ecdbffcb80e4e297175a43
src/services/api/ParkBountyApply.ts
@@ -32,6 +32,21 @@
  });
}
/** 生成奖励金统计报表 POST /api/ParkBountyApply/BuildRewardStatistics */
export async function buildRewardStatistics(
  body: API.BuildRewardStatisticsInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/ParkBountyApply/BuildRewardStatistics', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 撤回申报 GET /api/ParkBountyApply/CancelParkBountyApply */
export async function cancelParkBountyApply(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
@@ -457,6 +472,24 @@
  );
}
/** 获取批量登记中未财政拨付的企业 GET /api/ParkBountyApply/GetParkBountyApplyBatchFinanceRegEnterprise */
export async function getParkBountyApplyBatchFinanceRegEnterprise(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
  params: API.APIgetParkBountyApplyBatchFinanceRegEnterpriseParams,
  options?: API.RequestConfig
) {
  return request<API.GetNotTransferCompanyNameListOutput[]>(
    '/api/ParkBountyApply/GetParkBountyApplyBatchFinanceRegEnterprise',
    {
      method: 'GET',
      params: {
        ...params,
      },
      ...(options || {}),
    }
  );
}
/** 运营端-奖励金发放-入账-获取批量入账中未入账的企业 GET /api/ParkBountyApply/GetParkBountyApplyBatchTransferEnterprise */
export async function getParkBountyApplyBatchTransferEnterprise(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
@@ -465,6 +498,24 @@
) {
  return request<API.GetNotTransferCompanyNameListOutput[]>(
    '/api/ParkBountyApply/GetParkBountyApplyBatchTransferEnterprise',
    {
      method: 'GET',
      params: {
        ...params,
      },
      ...(options || {}),
    }
  );
}
/** 获取批量登记中未登记的企业 GET /api/ParkBountyApply/GetParkBountyApplyBatchTransferRegEnterprise */
export async function getParkBountyApplyBatchTransferRegEnterprise(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
  params: API.APIgetParkBountyApplyBatchTransferRegEnterpriseParams,
  options?: API.RequestConfig
) {
  return request<API.GetNotTransferCompanyNameListOutput[]>(
    '/api/ParkBountyApply/GetParkBountyApplyBatchTransferRegEnterprise',
    {
      method: 'GET',
      params: {
@@ -1042,6 +1093,14 @@
  });
}
/** 修复数据3.4.2.6 POST /api/ParkBountyApply/RepairData3_4_2_6 */
export async function repairData3426(options?: API.RequestConfig) {
  return request<any>('/api/ParkBountyApply/RepairData3_4_2_6', {
    method: 'POST',
    ...(options || {}),
  });
}
/** 保存奖金分配表、奖励金汇总表、奖励总额 POST /api/ParkBountyApply/SaveParkBountyApplyCollectFile */
export async function saveParkBountyApplyCollectFile(
  body: API.SaveParkBountyApplyCollectFileInput,