package com.moral.mapper; import java.util.List; import org.apache.ibatis.annotations.Param; import com.moral.common.mapper.BaseMapper; import com.moral.entity.Account; import com.moral.entity.Channel; public interface ChannelMapper extends BaseMapper { List getChannelList(@Param("channelName") String channelName); List getChannelId(); }