| | |
| | | ...(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; |
| | |
| | | /** 渠道流水号 */ |
| | | acoolyOrderNo?: string; |
| | | frontStatus?: LifeRechargeConstants.LifePayOrderFrontStatusEnum; |
| | | lifePayRefundStatus?: LifeRechargeConstants.LifePayRefundStatusEnum; |
| | | acoolyStatus?: LifeRechargeConstants.ACOOLYStatusEnum; |
| | | } |
| | | |
| | | export interface ElectricSupportAreaResponse { |
| | |
| | | } |
| | | |
| | | export type IntroInfoTypeEnum = 0 | 1 | 2 | 3 | 4; |
| | | |
| | | export interface ChannelRateOutput { |
| | | channlesRate?: number; |
| | | } |