From 245791c6de54b269dc22f38b0f6c5d160bf9c641 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 20 十一月 2025 13:13:30 +0800
Subject: [PATCH] fix: bug
---
src/services/api/ParkBountyApply.ts | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 45 insertions(+), 0 deletions(-)
diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts
index e420fb5..b64751b 100644
--- a/src/services/api/ParkBountyApply.ts
+++ b/src/services/api/ParkBountyApply.ts
@@ -790,6 +790,21 @@
);
}
+/** 瀵煎嚭鍥尯瀹㈡埛绠$悊鍒楄〃 POST /api/ParkBountyApply/GetParkCustomerManagePageNewExport */
+export async function getParkCustomerManagePageNewExport(
+ body: API.QueryParkCustomerManageInput,
+ options?: API.RequestConfig
+) {
+ return request<any>('/api/ParkBountyApply/GetParkCustomerManagePageNewExport', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ data: body,
+ ...(options || {}),
+ });
+}
+
/** 鏌ヨ濂栧姳閲戠粺璁℃姤琛� POST /api/ParkBountyApply/GetRewardStatistics */
export async function getRewardStatistics(
body: API.GetRewardStatisticsInput,
@@ -916,6 +931,36 @@
});
}
+/** 鏀垮姟绔�-鏉愭枡瀹℃牳-澶栭儴瀹℃牳鎾ゅ洖 POST /api/ParkBountyApply/OutcheckParkBountyApplyRedoed */
+export async function outcheckParkBountyApplyRedoed(
+ body: API.OutcheckParkBountyApplyRedoedInput,
+ options?: API.RequestConfig
+) {
+ return request<number>('/api/ParkBountyApply/OutcheckParkBountyApplyRedoed', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ data: body,
+ ...(options || {}),
+ });
+}
+
+/** 澶栭儴瀹℃牳鎾ゅ洖-澶嶅鎾ゅ洖 POST /api/ParkBountyApply/OutcheckParkBountyApplyReRedoed */
+export async function outcheckParkBountyApplyReRedoed(
+ body: API.OutcheckParkBountyApplyRedoedInput,
+ options?: API.RequestConfig
+) {
+ return request<number>('/api/ParkBountyApply/OutcheckParkBountyApplyReRedoed', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ data: body,
+ ...(options || {}),
+ });
+}
+
/** 鏀垮姟绔�-鏉愭枡瀹℃牳-澶栭儴澶嶅鏍� POST /api/ParkBountyApply/OutReCheckParkBountyApply */
export async function outReCheckParkBountyApply(
body: API.OutReCheckParkBountyApplyInput,
--
Gitblit v1.9.1