From 167abc7ab7c70542def539f623ce1790fc64bc24 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期六, 08 十一月 2025 14:22:00 +0800
Subject: [PATCH] fix: bug

---
 src/services/api/task.ts |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 48 insertions(+), 0 deletions(-)

diff --git a/src/services/api/task.ts b/src/services/api/task.ts
index ad58f4e..05569e2 100644
--- a/src/services/api/task.ts
+++ b/src/services/api/task.ts
@@ -32,6 +32,24 @@
   });
 }
 
+/** 璁$畻浠诲姟鎬绘湇鍔¤垂 POST /api/flexjob/task/calcTaskTotalServiceFee */
+export async function calcTaskTotalServiceFee(
+  body: API.CalcTaskTotalServiceFeeCommand,
+  options?: API.RequestConfig
+) {
+  return request<API.CalcTaskTotalServiceFeeCommandResult>(
+    '/api/flexjob/task/calcTaskTotalServiceFee',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json-patch+json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 鍒犻櫎浠诲姟 DELETE /api/flexjob/task/deleteTaskInfo */
 export async function deleteTaskInfo(body: API.DeleteTaskInfoCommand, options?: API.RequestConfig) {
   return request<number>('/api/flexjob/task/deleteTaskInfo', {
@@ -65,6 +83,21 @@
   options?: API.RequestConfig
 ) {
   return request<string>('/api/flexjob/task/exportTaskSettlementOrderRosters', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json-patch+json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 瀵煎嚭缁撶畻璁㈠崟 POST /api/flexjob/task/exportTaskSettlementOrders */
+export async function exportTaskSettlementOrders(
+  body: API.ExportTaskSettlementOrdersCommand,
+  options?: API.RequestConfig
+) {
+  return request<string>('/api/flexjob/task/exportTaskSettlementOrders', {
     method: 'POST',
     headers: {
       'Content-Type': 'application/json-patch+json',
@@ -266,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