zhengyiming
7 天以前 065acdf5fd02cab9ef1f7be460a5b0776d996532
src/services/api/EnterpriseApplyFile.ts
@@ -32,6 +32,21 @@
  });
}
/** 确认提交材料上传V2 POST /api/EnterpriseApplyFile/CustomerUploadMonthApplyFileV2 */
export async function customerUploadMonthApplyFileV2(
  body: API.CustomerUploadMonthApplyFileV2Input,
  options?: API.RequestConfig
) {
  return request<number>('/api/EnterpriseApplyFile/CustomerUploadMonthApplyFileV2', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 删除客户四流材料 POST /api/EnterpriseApplyFile/DeleteEnterpriseApplyUploadFile */
export async function deleteEnterpriseApplyUploadFile(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
@@ -116,6 +131,24 @@
  );
}
/** 获取月份上传文件详情V2 POST /api/EnterpriseApplyFile/GetCustomerUploadApplyFilesV2 */
export async function getCustomerUploadApplyFilesV2(
  body: API.GetCustomerUploadApplyFilesInput,
  options?: API.RequestConfig
) {
  return request<API.GetCustomerUploadApplyFilesV2Response>(
    '/api/EnterpriseApplyFile/GetCustomerUploadApplyFilesV2',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 根据月份查询是否存在提交记录 POST /api/EnterpriseApplyFile/GetCustomerUploadFileRecord */
export async function getCustomerUploadFileRecord(
  body: API.GetCustomerUploadFileRecordInput,
@@ -134,6 +167,24 @@
  );
}
/** 根据月份查询是否存在提交记录V2 POST /api/EnterpriseApplyFile/GetCustomerUploadFileRecordV2 */
export async function getCustomerUploadFileRecordV2(
  body: API.GetCustomerUploadFileRecordInput,
  options?: API.RequestConfig
) {
  return request<API.GetCustomerUploadFileRecordOutput>(
    '/api/EnterpriseApplyFile/GetCustomerUploadFileRecordV2',
    {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      data: body,
      ...(options || {}),
    }
  );
}
/** 按月份查询企业上传材料列表 POST /api/EnterpriseApplyFile/GetEnterpriseApplyUploadFile */
export async function getEnterpriseApplyUploadFile(
  body: API.PageInput,