From bd20a385dd86cf32735578c4c140a0aebf758e45 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期四, 15 五月 2025 17:15:07 +0800 Subject: [PATCH] fix: bug --- src/services/api/EnterpriseApplyFile.ts | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) diff --git a/src/services/api/EnterpriseApplyFile.ts b/src/services/api/EnterpriseApplyFile.ts index bc7de20..90bd80f 100644 --- a/src/services/api/EnterpriseApplyFile.ts +++ b/src/services/api/EnterpriseApplyFile.ts @@ -2,6 +2,21 @@ // @ts-ignore import { request } from '@/utils/request'; +/** 鎵归噺寮曠敤浼佷笟璧勬枡 GET /api/EnterpriseApplyFile/BatchQuoteEnterpriseApplyFile */ +export async function batchQuoteEnterpriseApplyFile( + // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄) + params: API.APIbatchQuoteEnterpriseApplyFileParams, + options?: API.RequestConfig +) { + return request<number>('/api/EnterpriseApplyFile/BatchQuoteEnterpriseApplyFile', { + method: 'GET', + params: { + ...params, + }, + ...(options || {}), + }); +} + /** 纭鎻愪氦鏉愭枡涓婁紶 POST /api/EnterpriseApplyFile/CustomerUploadMonthApplyFile */ export async function customerUploadMonthApplyFile( body: API.CustomerUploadMonthApplyFileInput, @@ -122,6 +137,24 @@ ); } +/** 鑾峰彇鍥尯姹囨�绘潗鏂欑被鍨� POST /api/EnterpriseApplyFile/GetParkCollectFileTypeList */ +export async function getParkCollectFileTypeList( + body: API.GetParkCollectFileTypeListInput, + options?: API.RequestConfig +) { + return request<API.GetCustomerUploadApplyFilesOutput[]>( + '/api/EnterpriseApplyFile/GetParkCollectFileTypeList', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); +} + /** 涓婁紶鏉愭枡璇︽儏-缂栬緫-涓婁紶鏂囦欢 POST /api/EnterpriseApplyFile/UploadMonthApplySingleFiles */ export async function uploadMonthApplySingleFiles( body: API.UploadMonthApplySingleFilesInput, -- Gitblit v1.9.1