From 43c5f55acde13b7f8d79b2aeaa28dd7f0f800bde Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期一, 10 十一月 2025 14:41:59 +0800
Subject: [PATCH] fix: bug
---
src/services/api/task.ts | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/src/services/api/task.ts b/src/services/api/task.ts
index e5e2142..05569e2 100644
--- a/src/services/api/task.ts
+++ b/src/services/api/task.ts
@@ -299,6 +299,21 @@
);
}
+/** 淇浠诲姟棰勮鎬绘湇鍔¤垂v1.3.0.1 POST /api/flexjob/task/repairTaskEstimatedServiceFee_1_3_0_1 */
+export async function repairTaskEstimatedServiceFee1301(
+ body: API.RepairTaskEstimatedServiceFee1301Command,
+ options?: API.RequestConfig
+) {
+ return request<boolean>('/api/flexjob/task/repairTaskEstimatedServiceFee_1_3_0_1', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json-patch+json',
+ },
+ data: body,
+ ...(options || {}),
+ });
+}
+
/** 鎾ゅ洖缁撶畻 POST /api/flexjob/task/revokeTaskSettlementOrder */
export async function revokeTaskSettlementOrder(
body: API.RevokeTaskSettlementOrderCommand,
--
Gitblit v1.9.1