zhengyiming
3 天以前 fc6bbae5805da6c95fd675210999a03802cd62ad
src/services/api/ParkBountyApply.ts
@@ -269,6 +269,24 @@
  );
}
/** 获取企业补充上传材料 POST /api/ParkBountyApply/GetEnterpriseParkApplyUploadExtraFiles */
export async function getEnterpriseParkApplyUploadExtraFiles(
  body: API.GetEnterpriseParkApplyUploadFilesInput,
  options?: API.RequestConfig
) {
  return request<API.GetEnterpriseParkApplyUploadFileOutput[]>(
    '/api/ParkBountyApply/GetEnterpriseParkApplyUploadExtraFiles',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 获取申报下企业上传的文件 POST /api/ParkBountyApply/GetEnterpriseParkApplyUploadFiles */
export async function getEnterpriseParkApplyUploadFiles(
  body: API.GetEnterpriseParkApplyUploadFilesInput,
@@ -1164,6 +1182,24 @@
  );
}
/** 上传企业补充材料 POST /api/ParkBountyApply/UploadParkBountyApplyCompanyExtraFile */
export async function uploadParkBountyApplyCompanyExtraFile(
  body: API.UploadParkApplyCustomerFilesInput,
  options?: API.RequestConfig
) {
  return request<API.UploadParkBountyApplyCompanyFileOutput>(
    '/api/ParkBountyApply/UploadParkBountyApplyCompanyExtraFile',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 上传企业材料 POST /api/ParkBountyApply/UploadParkBountyApplyCompanyFile */
export async function uploadParkBountyApplyCompanyFile(
  body: API.UploadParkBountyApplyCompanyFileInput,