package cn.efunbox.audio.service; import cn.efunbox.audio.entity.Audio; import cn.efunbox.audio.entity.Channel; import java.util.List; /** * Created by yao on 17-9-26. */ public interface ChannelService { public Channel GetOne(Long id); public List SearchAll(int page, int size); public List SearchById(Long id); public List SearchByIdFather(Long idFather); public List SearchByName(String name); public Channel Insert(Channel channel); public void Delete(Long id); }