zhengyiming
2 天以前 a8d7d415e4638fd9472b801234ac780678997486
packages/services/apiV2/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,