| | |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 获取须知 GET /api/LifePay/GetIntroInfo */ |
| | | async getIntroInfo(params: APIgetIntroInfoParams, options?: RequestConfig) { |
| | | return this.request<LifePayIntroInfoOutput[]>('/api/LifePay/GetIntroInfo', { |
| | | method: 'GET', |
| | | params: { |
| | | ...params, |
| | | }, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 获取渠道折扣 GET /api/LifePay/GetChannelRate */ |
| | | async getChannelRate(body: ChannelsBaseInput, options?: RequestConfig) { |
| | | return this.request<ChannelRateOutput>('/api/LifePay/GetChannelRate', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | } |
| | | |
| | | export interface PhoneMesssageCodeLoginInput { |
| | |
| | | creationTime?: string; |
| | | /** 退款时间 */ |
| | | refundTime?: string; |
| | | /** 退款申请时间 */ |
| | | refundApplyTime?: string; |
| | | /** 退款凭证 */ |
| | | refundCredentialsImgUrl?: string; |
| | | refundApplyRemark?: string; |
| | | refundCheckRemark?: string; |
| | | /** 渠道流水号 */ |
| | | acoolyOrderNo?: string; |
| | | frontStatus?: LifeRechargeConstants.LifePayOrderFrontStatusEnum; |
| | | lifePayRefundStatus?: LifeRechargeConstants.LifePayRefundStatusEnum; |
| | | acoolyStatus?: LifeRechargeConstants.ACOOLYStatusEnum; |
| | | } |
| | | |
| | | export interface ElectricSupportAreaResponse { |
| | |
| | | checkChannelId?: string; |
| | | orderNo?: string; |
| | | } |
| | | |
| | | export interface APIgetIntroInfoParams { |
| | | type?: LifeRechargeConstants.LifePayOrderTypeEnum; |
| | | } |
| | | |
| | | export interface LifePayIntroInfoOutput { |
| | | type?: IntroInfoTypeEnum; |
| | | lifePayType?: LifeRechargeConstants.LifePayOrderTypeEnum; |
| | | /** 摘要 */ |
| | | contentSummary?: string; |
| | | /** 文本内容 */ |
| | | content?: string; |
| | | /** 图片/视频路径 */ |
| | | path?: string; |
| | | /** 排序 */ |
| | | sequence?: number; |
| | | } |
| | | |
| | | export type IntroInfoTypeEnum = 0 | 1 | 2 | 3 | 4; |
| | | |
| | | export interface ChannelRateOutput { |
| | | channlesRate?: number; |
| | | } |