wupengfei
4 天以前 5b0401fea3c339aa45feb0d165f36b1b7a76fdaf
src/services/api/ParkBountyApply.ts
@@ -790,6 +790,21 @@
  );
}
/** 导出园区客户管理列表 POST /api/ParkBountyApply/GetParkCustomerManagePageNewExport */
export async function getParkCustomerManagePageNewExport(
  body: API.QueryParkCustomerManageInput,
  options?: API.RequestConfig
) {
  return request<any>('/api/ParkBountyApply/GetParkCustomerManagePageNewExport', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 查询奖励金统计报表 POST /api/ParkBountyApply/GetRewardStatistics */
export async function getRewardStatistics(
  body: API.GetRewardStatisticsInput,
@@ -907,6 +922,51 @@
  options?: API.RequestConfig
) {
  return request<number>('/api/ParkBountyApply/OutcheckParkBountyApply', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 政务端-材料审核-外部审核撤回 POST /api/ParkBountyApply/OutcheckParkBountyApplyRedoed */
export async function outcheckParkBountyApplyRedoed(
  body: API.OutcheckParkBountyApplyRedoedInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/ParkBountyApply/OutcheckParkBountyApplyRedoed', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 外部审核撤回-复审撤回 POST /api/ParkBountyApply/OutcheckParkBountyApplyReRedoed */
export async function outcheckParkBountyApplyReRedoed(
  body: API.OutcheckParkBountyApplyRedoedInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/ParkBountyApply/OutcheckParkBountyApplyReRedoed', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 外部审核重新提交 POST /api/ParkBountyApply/OutcheckParkBountyApplyResubmit */
export async function outcheckParkBountyApplyResubmit(
  body: API.OutcheckParkBountyApplyResubmitInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/ParkBountyApply/OutcheckParkBountyApplyResubmit', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
@@ -1242,6 +1302,36 @@
  });
}
/** 材料审核-更新详情 POST /api/ParkBountyApply/UpdateOutCheckParkBountyApplyDetailBaseInfo */
export async function updateOutCheckParkBountyApplyDetailBaseInfo(
  body: API.UpdateParkBountyApplyInfoInput,
  options?: API.RequestConfig
) {
  return request<number>('/api/ParkBountyApply/UpdateOutCheckParkBountyApplyDetailBaseInfo', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 更新企业自主申报 POST /api/ParkBountyApply/UpdateParkBountyApplyByEnterprise */
export async function updateParkBountyApplyByEnterprise(
  body: API.UpdateParkBountyApplyByEnterpriseInput,
  options?: API.RequestConfig
) {
  return request<string>('/api/ParkBountyApply/UpdateParkBountyApplyByEnterprise', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 上传企业补充材料 POST /api/ParkBountyApply/UploadParkBountyApplyCompanyExtraFile */
export async function uploadParkBountyApplyCompanyExtraFile(
  body: API.UploadParkApplyCustomerFilesInput,