ChannelService.java 544 B

1234567891011121314151617181920212223242526
  1. package cn.efunbox.audio.service;
  2. import cn.efunbox.audio.entity.Audio;
  3. import cn.efunbox.audio.entity.Channel;
  4. import java.util.List;
  5. /**
  6. * Created by yao on 17-9-26.
  7. */
  8. public interface ChannelService {
  9. public Channel GetOne(Long id);
  10. public List<Channel> SearchAll(int page, int size);
  11. public List<Channel> SearchById(Long id);
  12. public List<Channel> SearchByIdFather(Long idFather);
  13. public List<Channel> SearchByName(String name);
  14. public Channel Insert(Channel channel);
  15. public void Delete(Long id);
  16. }