From a2d490cc8d10e7b4cedb23919f088bf67a6dc20e Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 16 十月 2025 17:05:30 +0800
Subject: [PATCH] fix: s
---
src/services/api/ParkBountyApply.ts | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts
index 2f27c0b..44fb7c0 100644
--- a/src/services/api/ParkBountyApply.ts
+++ b/src/services/api/ParkBountyApply.ts
@@ -17,6 +17,21 @@
});
}
+/** 濂栧姳閲�-浼佷笟鑷韩鍑鸿处-瀹℃壒 POST /api/ParkBountyApply/AuditParkBountyApplyTradeBySelf */
+export async function auditParkBountyApplyTradeBySelf(
+ body: API.AuditParkBountyTradeBySelfInput,
+ options?: API.RequestConfig
+) {
+ return request<number>('/api/ParkBountyApply/AuditParkBountyApplyTradeBySelf', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ data: body,
+ ...(options || {}),
+ });
+}
+
/** 濂栧姳閲�-鍑鸿处-璐㈠姟瀹℃壒 POST /api/ParkBountyApply/FinanceAuditParkBountyApplyTrade */
export async function financeAuditParkBountyApplyTrade(
body: API.AuditParkBountyTradeInput,
@@ -82,3 +97,18 @@
...(options || {}),
});
}
+
+/** 濂栧姳閲�-绾夸笅鎶曚繚 浼佷笟鑷韩鎻愬嚭鍑鸿处鐢宠 POST /api/ParkBountyApply/ParkBountyApplyTradeBySelf */
+export async function parkBountyApplyTradeBySelf(
+ body: API.CreateParkBountyTradeInput,
+ options?: API.RequestConfig
+) {
+ return request<number>('/api/ParkBountyApply/ParkBountyApplyTradeBySelf', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ data: body,
+ ...(options || {}),
+ });
+}
--
Gitblit v1.9.1