zhengyiming
3 天以前 0a6c9341f947ba8feddad8e5a25f86bce4540815
src/services/api/EnterpriseApplyFile.ts
@@ -34,7 +34,7 @@
/** 确认提交材料上传V2 POST /api/EnterpriseApplyFile/CustomerUploadMonthApplyFileV2 */
export async function customerUploadMonthApplyFileV2(
  body: API.CustomerUploadMonthApplyFileInput,
  body: API.CustomerUploadMonthApplyFileV2Input,
  options?: API.RequestConfig
) {
  return request<number>('/api/EnterpriseApplyFile/CustomerUploadMonthApplyFileV2', {
@@ -136,7 +136,7 @@
  body: API.GetCustomerUploadApplyFilesInput,
  options?: API.RequestConfig
) {
  return request<API.GetCustomerUploadApplyFilesResponse>(
  return request<API.GetCustomerUploadApplyFilesV2Response>(
    '/api/EnterpriseApplyFile/GetCustomerUploadApplyFilesV2',
    {
      method: 'POST',
@@ -203,6 +203,24 @@
  );
}
/** 获取企业已上传申报材料月份 POST /api/EnterpriseApplyFile/GetEnterpriseMonthApplyHasUploadFileList */
export async function getEnterpriseMonthApplyHasUploadFileList(
  body: API.GetEnterpriseMonthApplyHasUploadFileListInput,
  options?: API.RequestConfig
) {
  return request<API.GetEnterpriseMonthApplyFileOutput[]>(
    '/api/EnterpriseApplyFile/GetEnterpriseMonthApplyHasUploadFileList',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 获取园区汇总材料类型 POST /api/EnterpriseApplyFile/GetParkCollectFileTypeList */
export async function getParkCollectFileTypeList(
  body: API.GetParkCollectFileTypeListInput,