| | |
| | | }); |
| | | } |
| | | |
| | | /** 获取指定天数的统计数据 POST /api/LifePay/StatisticsByDate */ |
| | | export async function statisticsByDate( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | | params: API.APIstatisticsByDateParams, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<number>('/api/LifePay/StatisticsByDate', { |
| | | method: 'POST', |
| | | params: { |
| | | ...params, |
| | | }, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 修改实际到账金额 POST /api/LifePay/UpdateLifePayOrderActualReceivedAmount */ |
| | | export async function updateLifePayOrderActualReceivedAmount( |
| | | body: API.UpdateLifePayOrderInput, |