|
@@ -1,10 +1,14 @@
|
|
|
package com.qs.mp.channel.service.impl;
|
|
|
|
|
|
import com.qs.mp.channel.domain.Channel;
|
|
|
+import com.qs.mp.channel.domain.vo.ChannelVO;
|
|
|
import com.qs.mp.channel.mapper.ChannelMapper;
|
|
|
import com.qs.mp.channel.service.IChannelService;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
/**
|
|
@@ -19,6 +23,13 @@ import org.springframework.stereotype.Service;
|
|
|
public class ChannelServiceImpl extends ServiceImpl<ChannelMapper, Channel> implements IChannelService {
|
|
|
|
|
|
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<ChannelVO> selectVoList(Channel channel) {
|
|
|
+
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public Channel getChannelByUserId(long userId) {
|
|
|
return getOne(new QueryWrapper<Channel>().lambda().eq(Channel::getUserId, userId));
|