From ff06c40770a05775e480032f1454a659b9a13a60 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 31 七月 2025 15:54:01 +0800
Subject: [PATCH] release: v2.2.2
---
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 e391fd4..2f27c0b 100644
--- a/src/services/api/ParkBountyApply.ts
+++ b/src/services/api/ParkBountyApply.ts
@@ -2,6 +2,36 @@
// @ts-ignore
import { request } from '@/utils/request';
+/** 濂栧姳閲�-鍑鸿处 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 || {}),
+ });
+}
+
+/** 濂栧姳閲�-鍑鸿处-璐㈠姟瀹℃壒 POST /api/ParkBountyApply/FinanceAuditParkBountyApplyTrade */
+export async function financeAuditParkBountyApplyTrade(
+ body: API.AuditParkBountyTradeInput,
+ options?: API.RequestConfig
+) {
+ return request<number>('/api/ParkBountyApply/FinanceAuditParkBountyApplyTrade', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ data: body,
+ ...(options || {}),
+ });
+}
+
/** 杩愯惀绔�-濂栧姳杩涘嚭璐﹁鎯� POST /api/ParkBountyApply/GetParkBountyTradeDetailList */
export async function getParkBountyTradeDetailList(
body: API.GetParkBountyTradeDetailByIdInput,
--
Gitblit v1.9.1