| | |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 点击数+1 POST /api/Promoter/SetClickCount */ |
| | | async setClickCount( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | | params: APIsetClickCountParams, |
| | | options?: RequestConfig |
| | | ) { |
| | | return this.request<any>('/api/Promoter/SetClickCount', { |
| | | method: 'POST', |
| | | params: { |
| | | ...params, |
| | | }, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 新增回访 POST /api/Promoter/CreateChannelConsultationFollowup */ |
| | | async createChannelConsultationFollowup( |
| | | body: CreateChannelConsultationFollowupInput, |
| | | options?: RequestConfig |
| | | ) { |
| | | return this.request<string>('/api/Promoter/CreateChannelConsultationFollowup', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | } |
| | | |
| | | export interface PhoneMesssageCodeLoginInput { |
| | |
| | | export interface QueryLifePayChannlesInput { |
| | | status?: LifeRechargeConstants.LifePayChannelsStatsEnum; |
| | | } |
| | | |
| | | export interface APIsetClickCountParams { |
| | | idnumber?: string; |
| | | } |
| | | |
| | | export interface CreateChannelConsultationFollowupInput { |
| | | /** 渠道咨询Id */ |
| | | channelConsultationId?: string; |
| | | followupStatus?: LifeRechargeConstants.LifePayChannelConsultationFollowupStatus; |
| | | /** 回访记录 */ |
| | | followupRemark?: string; |
| | | } |