IChannelService.java 644 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.qs.mp.channel.service;
  2. import com.qs.mp.channel.domain.Channel;
  3. import com.qs.mp.channel.domain.vo.ChannelVO;
  4. import java.util.List;
  5. import com.baomidou.mybatisplus.extension.service.IService;
  6. /**
  7. * <p>
  8. * 渠道经销商 服务类
  9. * </p>
  10. *
  11. * @author quanshu
  12. * @since 2022-03-02
  13. */
  14. public interface IChannelService extends IService<Channel> {
  15. /**
  16. * 获取我的下级渠道列表信息,支持翻页
  17. *
  18. * @param channel
  19. * @return
  20. */
  21. public List<ChannelVO> selectVoList(Channel channel);
  22. /**
  23. * 根据用户ID查询渠道
  24. *
  25. * @param userId
  26. * @return
  27. */
  28. Channel getChannelByUserId(Long userId);
  29. }