| | |
| | | } |
| | | |
| | | /** 获取全部缴费渠道 GET /api/LifePay/GetLifePayChannlesAllList */ |
| | | async getLifePayChannlesAllList(options?: RequestConfig) { |
| | | async getLifePayChannlesAllList(body: QueryLifePayChannlesInput, options?: RequestConfig) { |
| | | return this.request<CreateEditPayChannelsInput[]>('/api/LifePay/GetLifePayChannlesAllList', { |
| | | method: 'GET', |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | |
| | | /** 昨日活跃用户 */ |
| | | yesterdayActiveUsers?: number; |
| | | } |
| | | |
| | | export interface QueryLifePayChannlesInput { |
| | | status?: LifeRechargeConstants.LifePayChannelsStatsEnum; |
| | | } |