| | |
| | | }); |
| | | } |
| | | |
| | | /** 获取渠道折扣 POST /api/LifePay/GetChannelRate */ |
| | | export async function getChannelRate(body: API.ChannelsBaseInput, options?: API.RequestConfig) { |
| | | return request<API.ChannelRateOutput>('/api/LifePay/GetChannelRate', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 获取电费面值 POST /api/LifePay/GetElectricParValue */ |
| | | export async function getElectricParValue( |
| | | body: API.ChannelsBaseInput, |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 导出退款订单Excel POST /api/LifePay/GetLifePayRefudOrderPageExport */ |
| | | export async function getLifePayRefudOrderPageExport( |
| | | body: API.QueryLifePayRefundOrderListInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<any>('/api/LifePay/GetLifePayRefudOrderPageExport', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 获取退款订单详情 GET /api/LifePay/GetLifePayRefundOrderDetail */ |
| | | export async function getLifePayRefundOrderDetail( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |