From da9363290e99b960805b7dfdefef201f89d1dde0 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 16 七月 2025 18:07:39 +0800
Subject: [PATCH] fix: 奖励金审核

---
 src/services/api/ParkBountyApply.ts |  182 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 181 insertions(+), 1 deletions(-)

diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts
index fbe0aa0..867b106 100644
--- a/src/services/api/ParkBountyApply.ts
+++ b/src/services/api/ParkBountyApply.ts
@@ -17,6 +17,21 @@
   });
 }
 
+/** 濂栧姳閲�-鍑鸿处 POST /api/ParkBountyApply/AuditParkBountyApplyTrade */
+export async function auditParkBountyApplyTrade(
+  body: API.AuditParkBountyTradeInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/AuditParkBountyApplyTrade', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鎾ゅ洖鐢虫姤 GET /api/ParkBountyApply/CancelParkBountyApply */
 export async function cancelParkBountyApply(
   // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
@@ -28,6 +43,21 @@
     params: {
       ...params,
     },
+    ...(options || {}),
+  });
+}
+
+/** 鎻愮幇瀹℃牳 POST /api/ParkBountyApply/CheckEnterpriseApplyDrawWith */
+export async function checkEnterpriseApplyDrawWith(
+  body: API.CheckEnterpriseApplyDrawWithInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/CheckEnterpriseApplyDrawWith', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
     ...(options || {}),
   });
 }
@@ -77,6 +107,21 @@
   });
 }
 
+/** 瀹㈡埛绔�-鐢宠鎻愮幇 POST /api/ParkBountyApply/EnterpriseApplyDrawWith */
+export async function enterpriseApplyDrawWith(
+  body: API.EnterpriseApplyDrawWithInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/EnterpriseApplyDrawWith', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鑾峰彇鍙�夋嫨鍏徃鍜屽凡鍓旈櫎鍏徃 POST /api/ParkBountyApply/GetCompanyNameList */
 export async function getCompanyNameList(
   body: API.GetCompanyNameListInput,
@@ -99,6 +144,42 @@
 ) {
   return request<API.GetParkBountyApplyListOutputPageOutput>(
     '/api/ParkBountyApply/GetCustmoerParkBountyApplyList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
+/** 鑾峰彇鎻愮幇鐢宠璇︽儏 GET /api/ParkBountyApply/GetEnterpriseDrawWithDetail */
+export async function getEnterpriseDrawWithDetail(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIgetEnterpriseDrawWithDetailParams,
+  options?: API.RequestConfig
+) {
+  return request<API.GetEnterpriseDrawWithDetailOutput>(
+    '/api/ParkBountyApply/GetEnterpriseDrawWithDetail',
+    {
+      method: 'GET',
+      params: {
+        ...params,
+      },
+      ...(options || {}),
+    }
+  );
+}
+
+/** 鑾峰彇鎻愮幇鐢宠璁板綍鍒楄〃 POST /api/ParkBountyApply/GetEnterpriseDrawWithList */
+export async function getEnterpriseDrawWithList(
+  body: API.GetEnterpriseDrawWithListInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetEnterpriseDrawWithListOutputPageOutput>(
+    '/api/ParkBountyApply/GetEnterpriseDrawWithList',
     {
       method: 'POST',
       headers: {
@@ -168,6 +249,21 @@
 ) {
   return request<API.GetEnterprisePreChargeCheckListOutputPageOutput>(
     '/api/ParkBountyApply/GetEnterprisePreChargeCheckList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
+/** 鑾峰彇鍏呭�艰褰曞垪琛� POST /api/ParkBountyApply/GetEnterprisePrechargeList */
+export async function getEnterprisePrechargeList(body: API.PageInput, options?: API.RequestConfig) {
+  return request<API.GetEnterprisePrechargeListOutputPageOutput>(
+    '/api/ParkBountyApply/GetEnterprisePrechargeList',
     {
       method: 'POST',
       headers: {
@@ -508,13 +604,49 @@
   );
 }
 
-/** 杩愯惀绔竴鍥尯瀹㈡埛绠$悊璇︽儏涓�濂栧姳閲戝彂鏀捐褰� POST /api/ParkBountyApply/GetParkCustomerBountyGrantList */
+/** 鎷ㄤ粯璁板綍 POST /api/ParkBountyApply/GetParkCustomerBountyFinanceList */
+export async function getParkCustomerBountyFinanceList(
+  body: API.QueryParkCustomerBountyApplyInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetParkCustomerBountyFinanceOutputPageOutput>(
+    '/api/ParkBountyApply/GetParkCustomerBountyFinanceList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
+/** 鍙戞斁璁板綍 POST /api/ParkBountyApply/GetParkCustomerBountyGrantList */
 export async function getParkCustomerBountyGrantList(
   body: API.QueryParkCustomerBountyApplyInput,
   options?: API.RequestConfig
 ) {
   return request<API.GetParkCustomerBountyGrantOutputPageOutput>(
     '/api/ParkBountyApply/GetParkCustomerBountyGrantList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
+/** 杩愯惀绔竴鍥尯瀹㈡埛绠$悊璇︽儏涓�濂栧姳閲戝彂鏀捐褰� POST /api/ParkBountyApply/GetParkCustomerBountySettleList */
+export async function getParkCustomerBountySettleList(
+  body: API.QueryParkCustomerBountyApplyInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetParkCustomerBountySettleOutputPageOutput>(
+    '/api/ParkBountyApply/GetParkCustomerBountySettleList',
     {
       method: 'POST',
       headers: {
@@ -649,6 +781,21 @@
   });
 }
 
+/** 涓婁紶璐㈡斂鎷ㄤ粯鐧昏閲戦 POST /api/ParkBountyApply/ParkBountyApplyFinanceBillAmount */
+export async function parkBountyApplyFinanceBillAmount(
+  body: API.ParkBountyApplyFinanceFileInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/ParkBountyApplyFinanceBillAmount', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 璐㈡斂鍏ヨ处涓婁紶鍑瘉 POST /api/ParkBountyApply/ParkBountyApplyFinanceFile */
 export async function parkBountyApplyFinanceFile(
   body: API.ParkBountyApplyRechargeFileInput,
@@ -670,6 +817,21 @@
   options?: API.RequestConfig
 ) {
   return request<number>('/api/ParkBountyApply/ParkBountyApplySettle', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 涓婁紶鍏呭�肩櫥璁伴噾棰� POST /api/ParkBountyApply/ParkBountyApplySettleAmount */
+export async function parkBountyApplySettleAmount(
+  body: API.ParkBountyApplySettleInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/ParkBountyApplySettleAmount', {
     method: 'POST',
     headers: {
       'Content-Type': 'application/json',
@@ -754,6 +916,24 @@
   });
 }
 
+/** 鍚屾濂栧姳閲戝嚭璐︿俊鎭� POST /api/ParkBountyApply/SyncParkBountyApplyTrade */
+export async function syncParkBountyApplyTrade(
+  body: API.CreateParkBountyTradeInput,
+  options?: API.RequestConfig
+) {
+  return request<API.SyncParkBountyApplyTradeOutput>(
+    '/api/ParkBountyApply/SyncParkBountyApplyTrade',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 涓婁紶浼佷笟鏉愭枡 POST /api/ParkBountyApply/UploadParkBountyApplyCompanyFile */
 export async function uploadParkBountyApplyCompanyFile(
   body: API.UploadParkBountyApplyCompanyFileInput,

--
Gitblit v1.9.1