| | |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using Volo.Abp; |
| | | using Volo.Abp.Application.Services; |
| | | using Volo.Abp.AutoMapper; |
| | | using Volo.Abp.Users; |
| | |
| | | Task<PageOutput<PromoterDto>> GetPromoters(GetPromotersInput input); |
| | | |
| | | /// <summary> |
| | | /// 获取推广员信息 |
| | | /// </summary> |
| | | /// <param name="phoneNumber"></param> |
| | | /// <returns></returns> |
| | | Task<PromoterDto> GetPromoter(string phoneNumber); |
| | | |
| | | /// <summary> |
| | | /// 获取渠道咨询列表 |
| | | /// </summary> |
| | | /// <param name="input"></param> |
| | | /// <returns></returns> |
| | | Task<PageOutput<ChannelConsultationDto>> GetChannelConsultation(GetChannelConsultationsInput input); |
| | | |
| | | /// <summary> |
| | | /// 获取渠道咨询Id |
| | | /// </summary> |
| | | /// <param name="id"></param> |
| | | /// <returns></returns> |
| | | /// <exception cref="FriendlyException"></exception> |
| | | Task<ChannelConsultationDto> GetChannelConsultationById(Guid id); |
| | | |
| | | /// <summary> |
| | | /// 获取渠道咨询回访记录 |
| | |
| | | /// <param name="input"></param> |
| | | /// <returns></returns> |
| | | /// <exception cref="FormatException"></exception> |
| | | Task<Guid> CreateOrUpdatePromoter(CreateOrUpdatePromoterInput input); |
| | | Task<CreateOrUpdatePromoterOutput> CreateOrUpdatePromoter(CreateOrUpdatePromoterInput input); |
| | | |
| | | /// <summary> |
| | | /// 点击数+1 |