| | |
| | | |
| | | 禁用 = 20, |
| | | } |
| | | |
| | | export enum LifePayChannelConsultationFollowupStatus { |
| | | /**未回访 */ |
| | | None = 0, |
| | | /**跟进中 */ |
| | | Ing = 1, |
| | | /**已拒绝 */ |
| | | Refuse = 1, |
| | | /**已开通 */ |
| | | Open = 1, |
| | | } |
| | | } |
| | |
| | | ...(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; |
| | | } |
| | |
| | | switchType?: LifePaySwitchTypeEnum; |
| | | status?: LifePayChannelsStatsEnum; |
| | | channlesType?: LifePayChannlesTypeEnum; |
| | | agentType?: LifePayChannelAgentType; |
| | | /** 区域-省Id */ |
| | | areaProvinceId?: number; |
| | | /** 区域-市Id */ |
| | | areaCityId?: number; |
| | | /** 推广员ID */ |
| | | promoterIdNumber?: string; |
| | | /** 推广员 */ |
| | | promoterName?: string; |
| | | } |
| | | |
| | | interface CreateEditPayChannelsInputPageOutput { |
| | |
| | | "composite": true, |
| | | "types": ["node", "./api/typings.d.ts", "./types.d.ts", "./globalType.d.ts"] |
| | | }, |
| | | "include": ["api", "./api/typings.d.ts"], |
| | | "exclude": ["node_modules", "dist"] |
| | | } |