| | |
| | | ); |
| | | } |
| | | |
| | | /** 修复任务预计总服务费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, |