| | |
| | | /** 获取顶部统计数据 GET /api/LifePay/GetTopStatistics */ |
| | | async getTopStatistics( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | | params: APIgetTopStatisticsParams, |
| | | body: TopStatisticsInput, |
| | | options?: RequestConfig |
| | | ) { |
| | | return this.request<TopStatisticsOutput>('/api/LifePay/GetTopStatistics', { |
| | | method: 'GET', |
| | | params: { |
| | | ...params, |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | |
| | | name?: string; |
| | | channlesNum?: string; |
| | | channlesId?: string; |
| | | switchType?: LifeRechargeConstants.LifePaySwitchTypeEnum; |
| | | } |
| | | |
| | | export interface LifePayUserMesssageByIduserInput { |
| | |
| | | id?: string; |
| | | } |
| | | |
| | | export interface APIgetTopStatisticsParams { |
| | | channleId?: string; |
| | | export interface TopStatisticsInput { |
| | | channleList?: string[]; |
| | | } |
| | | |
| | | export interface TopStatisticsOutput { |