IChannelService.java 460 B

12345678910111213141516171819202122232425
  1. package com.qs.mp.channel.service;
  2. import com.qs.mp.channel.domain.Channel;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. /**
  5. * <p>
  6. * 渠道经销商 服务类
  7. * </p>
  8. *
  9. * @author quanshu
  10. * @since 2022-02-28
  11. */
  12. public interface IChannelService extends IService<Channel> {
  13. /**
  14. * 登录的时候根据userid查询Channel信息
  15. * @param userId
  16. * @return
  17. */
  18. public Channel getChannelByUserId(long userId);
  19. }