From 89436385a31b0f31c33bb4688ab7c3b549ecc125 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期三, 10 十二月 2025 17:15:52 +0800
Subject: [PATCH] feat: databoard
---
src/services/api/EnterpriseApplyFile.ts | 81 +++++++++++++++++++++++++++++++++++++---
1 files changed, 75 insertions(+), 6 deletions(-)
diff --git a/src/services/api/EnterpriseApplyFile.ts b/src/services/api/EnterpriseApplyFile.ts
index 6413946..e2686e5 100644
--- a/src/services/api/EnterpriseApplyFile.ts
+++ b/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(
// 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
@@ -116,19 +131,55 @@
);
}
-/** 鏍规嵁鏈堜唤鏌ヨ鏄惁瀛樺湪鎻愪氦璁板綍 GET /api/EnterpriseApplyFile/GetCustomerUploadFileRecord */
+/** 鑾峰彇鏈堜唤涓婁紶鏂囦欢璇︽儏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(
- // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
- params: API.APIgetCustomerUploadFileRecordParams,
+ body: API.GetCustomerUploadFileRecordInput,
options?: API.RequestConfig
) {
return request<API.GetCustomerUploadFileRecordOutput>(
'/api/EnterpriseApplyFile/GetCustomerUploadFileRecord',
{
- method: 'GET',
- params: {
- ...params,
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
},
+ data: body,
+ ...(options || {}),
+ }
+ );
+}
+
+/** 鏍规嵁鏈堜唤鏌ヨ鏄惁瀛樺湪鎻愪氦璁板綍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 || {}),
}
);
@@ -152,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,
--
Gitblit v1.9.1