zhengyiming
2025-06-09 b237e3a2dd13592a680d99c058e5c832a1322120
packages/core/src/lifeRechargeServices.ts
@@ -395,6 +395,36 @@
      ...(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 {
@@ -896,3 +926,15 @@
export interface QueryLifePayChannlesInput {
  status?: LifeRechargeConstants.LifePayChannelsStatsEnum;
}
export interface APIsetClickCountParams {
  idnumber?: string;
}
export interface CreateChannelConsultationFollowupInput {
  /** 渠道咨询Id */
  channelConsultationId?: string;
  followupStatus?: LifeRechargeConstants.LifePayChannelConsultationFollowupStatus;
  /** 回访记录 */
  followupRemark?: string;
}