| | |
| | | } |
| | | ); |
| | | } |
| | | |
| | | /** 获取折扣通道配置列表 POST /api/LifePayRate/GetLifePayRateChannelAllList */ |
| | | async getLifePayRateChannelAllList(body: QueryRateChannelInput, options?: RequestConfig) { |
| | | return this.request<CreateEditRateChannelOutput[]>( |
| | | '/api/LifePayRate/GetLifePayRateChannelAllList', |
| | | { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | } |
| | | ); |
| | | } |
| | | } |
| | | |
| | | export interface PhoneMesssageCodeLoginInput { |
| | |
| | | creationTime?: string; |
| | | status?: LifeRechargeConstants.AnnouncementStatusEnum; |
| | | } |
| | | |
| | | export interface QueryRateChannelInput { |
| | | status?: LifeRechargeConstants.LifePayRateChannelStatus; |
| | | lifePayOrderType?: LifeRechargeConstants.LifePayOrderTypeEnum; |
| | | } |
| | | |
| | | export interface CreateEditRateChannelOutput { |
| | | id?: string; |
| | | lifePayOrderType: LifeRechargeConstants.LifePayOrderTypeEnum; |
| | | /** 通道 */ |
| | | rateChannelName: string; |
| | | /** ID */ |
| | | code: string; |
| | | /** 供应商折扣 */ |
| | | supplierRate: number; |
| | | /** 平台折扣 */ |
| | | platformRate: number; |
| | | status: LifeRechargeConstants.LifePayRateChannelStatus; |
| | | /** 通知内容 */ |
| | | remark: string; |
| | | creationTime?: string; |
| | | } |