From b7426e2384b85e92ec1b59061bdada9b4f5c69ec Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期三, 23 四月 2025 16:12:40 +0800
Subject: [PATCH] feat: 接口

---
 src/services/api/ParkReward.ts |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)

diff --git a/src/services/api/ParkReward.ts b/src/services/api/ParkReward.ts
index 41bf2af..f00c706 100644
--- a/src/services/api/ParkReward.ts
+++ b/src/services/api/ParkReward.ts
@@ -62,6 +62,24 @@
   });
 }
 
+/** 鑾峰彇浼佷笟濂栧姳閲戞祦姘� POST /api/ParkReward/GetEnterpriseBuntyTradeList */
+export async function getEnterpriseBuntyTradeList(
+  body: API.PageInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetEnterpriseBuntyTradeDtoPageOutput>(
+    '/api/ParkReward/GetEnterpriseBuntyTradeList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 鑾峰彇鏈�鏂板鍔辩敵璇蜂俊鎭� GET /api/ParkReward/GetNewestParkRewardApplyInfo */
 export async function getNewestParkRewardApplyInfo(
   // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
@@ -77,6 +95,24 @@
   });
 }
 
+/** 杩愯惀绔竴鍥尯瀹㈡埛绠$悊璇︽儏涓�濂栧姳閲戞秷璐硅褰� POST /api/ParkReward/GetParkCustomerBountyConsumptionList */
+export async function getParkCustomerBountyConsumptionList(
+  body: API.QueryParkCustomerBountyApplyInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetParkCustomerBountyConsumptionOutputPageOutput>(
+    '/api/ParkReward/GetParkCustomerBountyConsumptionList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 鑾峰彇濂栧姳鐢宠璺熻釜鍒楄〃 POST /api/ParkReward/GetParkRewardApplyFollowList */
 export async function getParkRewardApplyFollowList(
   body: API.GetParkRewardApplyFollowInput,

--
Gitblit v1.9.1