From 6d11286953b0832a8a9a14315f8784d0c025b380 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期四, 15 五月 2025 15:42:16 +0800
Subject: [PATCH] fix: bug
---
src/services/api/ParkBountyApply.ts | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts
index e75e6e9..fbeb4ac 100644
--- a/src/services/api/ParkBountyApply.ts
+++ b/src/services/api/ParkBountyApply.ts
@@ -607,6 +607,24 @@
);
}
+/** 鍙戞斁璁板綍 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,
--
Gitblit v1.9.1