HagContentService.java 423 B

12345678910111213141516
  1. package cn.efunbox.audio.service.hag;
  2. import cn.efunbox.audio.vo.hag.HagContentReq;
  3. import cn.efunbox.audio.vo.hag.HagBaseResp;
  4. import cn.efunbox.audio.vo.hag.HagSkillReq;
  5. import cn.efunbox.audio.vo.hag.HagSkillResp;
  6. /**
  7. * HagContentService
  8. * Created by xusq on 2019/12/25.
  9. */
  10. public interface HagContentService {
  11. HagBaseResp list(HagContentReq hagContentReq);
  12. HagSkillResp getResUrl(HagSkillReq skillReq);
  13. }