12345678910111213141516171819202122232425 |
- package com.qs.mp.channel.service;
- import com.qs.mp.channel.domain.Channel;
- import com.baomidou.mybatisplus.extension.service.IService;
- /**
- * <p>
- * 渠道经销商 服务类
- * </p>
- *
- * @author quanshu
- * @since 2022-02-28
- */
- public interface IChannelService extends IService<Channel> {
-
-
- /**
- * 登录的时候根据userid查询Channel信息
- * @param userId
- * @return
- */
- public Channel getChannelByUserId(long userId);
- }
|