123456789101112131415161718 |
- 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 List<Channel> SearchById(Long id);
- public List<Channel> SearchByName(String name);
- public Channel Insert(Channel channel);
- }
|