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<Account> {
|
|
List<Channel> getChannelList(@Param("channelName") String channelName);
|
|
}
|