CcTtsAliyunMapper.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ruoyi.aicall.mapper;
  2. import java.util.List;
  3. import com.ruoyi.aicall.domain.CcTtsAliyun;
  4. /**
  5. * 阿里云音色列Mapper接口
  6. *
  7. * @author ruoyi
  8. * @date 2025-05-29
  9. */
  10. public interface CcTtsAliyunMapper
  11. {
  12. /**
  13. * 查询阿里云音色列
  14. *
  15. * @param id 阿里云音色列主键
  16. * @return 阿里云音色列
  17. */
  18. public CcTtsAliyun selectCcTtsAliyunById(Integer id);
  19. /**
  20. * 查询阿里云音色列列表
  21. *
  22. * @param ccTtsAliyun 阿里云音色列
  23. * @return 阿里云音色列集合
  24. */
  25. public List<CcTtsAliyun> selectCcTtsAliyunList(CcTtsAliyun ccTtsAliyun);
  26. /**
  27. * 新增阿里云音色列
  28. *
  29. * @param ccTtsAliyun 阿里云音色列
  30. * @return 结果
  31. */
  32. public int insertCcTtsAliyun(CcTtsAliyun ccTtsAliyun);
  33. /**
  34. * 修改阿里云音色列
  35. *
  36. * @param ccTtsAliyun 阿里云音色列
  37. * @return 结果
  38. */
  39. public int updateCcTtsAliyun(CcTtsAliyun ccTtsAliyun);
  40. /**
  41. * 删除阿里云音色列
  42. *
  43. * @param id 阿里云音色列主键
  44. * @return 结果
  45. */
  46. public int deleteCcTtsAliyunById(Integer id);
  47. /**
  48. * 批量删除阿里云音色列
  49. *
  50. * @param ids 需要删除的数据主键集合
  51. * @return 结果
  52. */
  53. public int deleteCcTtsAliyunByIds(String[] ids);
  54. }