From dc5dbf0304050a2a84cd16df3330949de41ca723 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 10 十一月 2025 16:45:19 +0800
Subject: [PATCH] fix: bug
---
packages/services/apiV2/task.ts | 33 +++++++++++++++++++++++++++++++++
1 files changed, 33 insertions(+), 0 deletions(-)
diff --git a/packages/services/apiV2/task.ts b/packages/services/apiV2/task.ts
index 5c4cfaa..05569e2 100644
--- a/packages/services/apiV2/task.ts
+++ b/packages/services/apiV2/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', {
@@ -281,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