wupengfei
8 天以前 bd20a385dd86cf32735578c4c140a0aebf758e45
src/services/api/ParkBountyApply.ts
@@ -32,6 +32,21 @@
  });
}
/** 提现审核 POST /api/ParkBountyApply/CheckEnterpriseApplyDrawWith */
export async function checkEnterpriseApplyDrawWith(
  body: API.CheckEnterpriseApplyDrawWithInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/ParkBountyApply/CheckEnterpriseApplyDrawWith', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 预充值审核 POST /api/ParkBountyApply/CheckUserEnterpriseRecharge */
export async function checkUserEnterpriseRecharge(
  body: API.CheckUserEnterpriseRechargeInput,
@@ -47,12 +62,42 @@
  });
}
/** 此处后端没有提供注释 GET /api/ParkBountyApply/DeleteParkEnterpriseApplyFile */
export async function deleteParkEnterpriseApplyFile(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
  params: API.APIdeleteParkEnterpriseApplyFileParams,
  options?: API.RequestConfig
) {
  return request<number>('/api/ParkBountyApply/DeleteParkEnterpriseApplyFile', {
    method: 'GET',
    params: {
      ...params,
    },
    ...(options || {}),
  });
}
/** 继续申报 POST /api/ParkBountyApply/EditParkBountyApply */
export async function editParkBountyApply(
  body: API.EditParkBountyApplyStepOneInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/ParkBountyApply/EditParkBountyApply', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 客户端-申请提现 POST /api/ParkBountyApply/EnterpriseApplyDrawWith */
export async function enterpriseApplyDrawWith(
  body: API.EnterpriseApplyDrawWithInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/ParkBountyApply/EnterpriseApplyDrawWith', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
@@ -95,6 +140,42 @@
  );
}
/** 获取提现申请详情 GET /api/ParkBountyApply/GetEnterpriseDrawWithDetail */
export async function getEnterpriseDrawWithDetail(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
  params: API.APIgetEnterpriseDrawWithDetailParams,
  options?: API.RequestConfig
) {
  return request<API.GetEnterpriseDrawWithDetailOutput>(
    '/api/ParkBountyApply/GetEnterpriseDrawWithDetail',
    {
      method: 'GET',
      params: {
        ...params,
      },
      ...(options || {}),
    }
  );
}
/** 获取提现申请记录列表 POST /api/ParkBountyApply/GetEnterpriseDrawWithList */
export async function getEnterpriseDrawWithList(
  body: API.GetEnterpriseDrawWithListInput,
  options?: API.RequestConfig
) {
  return request<API.GetEnterpriseDrawWithListOutputPageOutput>(
    '/api/ParkBountyApply/GetEnterpriseDrawWithList',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 获取企业最后一次上传的园区入驻协议文件 GET /api/ParkBountyApply/GetEnterpriseLastUploadEnterPactFile */
export async function getEnterpriseLastUploadEnterPactFile(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
@@ -110,6 +191,42 @@
  });
}
/** 获取企业最后一次上传的园区入驻协议文件 GET /api/ParkBountyApply/GetEnterpriseLastUploadEnterPactFileNew */
export async function getEnterpriseLastUploadEnterPactFileNew(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
  params: API.APIgetEnterpriseLastUploadEnterPactFileNewParams,
  options?: API.RequestConfig
) {
  return request<API.CustomerUploadMonthApplyFileTypeDto[]>(
    '/api/ParkBountyApply/GetEnterpriseLastUploadEnterPactFileNew',
    {
      method: 'GET',
      params: {
        ...params,
      },
      ...(options || {}),
    }
  );
}
/** 获取申报下企业上传的文件 POST /api/ParkBountyApply/GetEnterpriseParkApplyUploadFiles */
export async function getEnterpriseParkApplyUploadFiles(
  body: API.GetEnterpriseParkApplyUploadFilesInput,
  options?: API.RequestConfig
) {
  return request<API.GetEnterpriseParkApplyUploadFileOutput[]>(
    '/api/ParkBountyApply/GetEnterpriseParkApplyUploadFiles',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 获取企业充值审核列表 POST /api/ParkBountyApply/GetEnterprisePreChargeCheckList */
export async function getEnterprisePreChargeCheckList(
  body: API.GetEnterprisePreChargeCheckListInput,
@@ -117,6 +234,21 @@
) {
  return request<API.GetEnterprisePreChargeCheckListOutputPageOutput>(
    '/api/ParkBountyApply/GetEnterprisePreChargeCheckList',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 获取充值记录列表 POST /api/ParkBountyApply/GetEnterprisePrechargeList */
export async function getEnterprisePrechargeList(body: API.PageInput, options?: API.RequestConfig) {
  return request<API.GetEnterprisePrechargeListOutputPageOutput>(
    '/api/ParkBountyApply/GetEnterprisePrechargeList',
    {
      method: 'POST',
      headers: {
@@ -457,13 +589,49 @@
  );
}
/** 运营端一园区客户管理详情一奖励金发放记录 POST /api/ParkBountyApply/GetParkCustomerBountyGrantList */
/** 拨付记录 POST /api/ParkBountyApply/GetParkCustomerBountyFinanceList */
export async function getParkCustomerBountyFinanceList(
  body: API.QueryParkCustomerBountyApplyInput,
  options?: API.RequestConfig
) {
  return request<API.GetParkCustomerBountyFinanceOutputPageOutput>(
    '/api/ParkBountyApply/GetParkCustomerBountyFinanceList',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 发放记录 POST /api/ParkBountyApply/GetParkCustomerBountyGrantList */
export async function getParkCustomerBountyGrantList(
  body: API.QueryParkCustomerBountyApplyInput,
  options?: API.RequestConfig
) {
  return request<API.GetParkCustomerBountyGrantOutputPageOutput>(
    '/api/ParkBountyApply/GetParkCustomerBountyGrantList',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 运营端一园区客户管理详情一奖励金发放记录 POST /api/ParkBountyApply/GetParkCustomerBountySettleList */
export async function getParkCustomerBountySettleList(
  body: API.QueryParkCustomerBountyApplyInput,
  options?: API.RequestConfig
) {
  return request<API.GetParkCustomerBountySettleOutputPageOutput>(
    '/api/ParkBountyApply/GetParkCustomerBountySettleList',
    {
      method: 'POST',
      headers: {
@@ -598,6 +766,21 @@
  });
}
/** 上传财政拨付登记金额 POST /api/ParkBountyApply/ParkBountyApplyFinanceBillAmount */
export async function parkBountyApplyFinanceBillAmount(
  body: API.ParkBountyApplyFinanceFileInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/ParkBountyApply/ParkBountyApplyFinanceBillAmount', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 财政入账上传凭证 POST /api/ParkBountyApply/ParkBountyApplyFinanceFile */
export async function parkBountyApplyFinanceFile(
  body: API.ParkBountyApplyRechargeFileInput,
@@ -619,6 +802,21 @@
  options?: API.RequestConfig
) {
  return request<number>('/api/ParkBountyApply/ParkBountyApplySettle', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 上传充值登记金额 POST /api/ParkBountyApply/ParkBountyApplySettleAmount */
export async function parkBountyApplySettleAmount(
  body: API.ParkBountyApplySettleInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/ParkBountyApply/ParkBountyApplySettleAmount', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
@@ -721,6 +919,24 @@
  );
}
/** 上传企业材料 POST /api/ParkBountyApply/UploadParkBountyApplyCompanyFileNew */
export async function uploadParkBountyApplyCompanyFileNew(
  body: API.UploadParkApplyCustomerFilesInput,
  options?: API.RequestConfig
) {
  return request<API.UploadParkBountyApplyCompanyFileOutput>(
    '/api/ParkBountyApply/UploadParkBountyApplyCompanyFileNew',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 用户充值 POST /api/ParkBountyApply/UserEnterpiseRecharge */
export async function userEnterpiseRecharge(
  body: API.UserEnterpiseRechargeInput,