| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.ruoyi.aicall.mapper;
- import java.util.List;
- import com.ruoyi.aicall.domain.CcTtsAliyun;
- /**
- * 阿里云音色列Mapper接口
- *
- * @author ruoyi
- * @date 2025-05-29
- */
- public interface CcTtsAliyunMapper
- {
- /**
- * 查询阿里云音色列
- *
- * @param id 阿里云音色列主键
- * @return 阿里云音色列
- */
- public CcTtsAliyun selectCcTtsAliyunById(Integer id);
- /**
- * 查询阿里云音色列列表
- *
- * @param ccTtsAliyun 阿里云音色列
- * @return 阿里云音色列集合
- */
- public List<CcTtsAliyun> selectCcTtsAliyunList(CcTtsAliyun ccTtsAliyun);
- /**
- * 新增阿里云音色列
- *
- * @param ccTtsAliyun 阿里云音色列
- * @return 结果
- */
- public int insertCcTtsAliyun(CcTtsAliyun ccTtsAliyun);
- /**
- * 修改阿里云音色列
- *
- * @param ccTtsAliyun 阿里云音色列
- * @return 结果
- */
- public int updateCcTtsAliyun(CcTtsAliyun ccTtsAliyun);
- /**
- * 删除阿里云音色列
- *
- * @param id 阿里云音色列主键
- * @return 结果
- */
- public int deleteCcTtsAliyunById(Integer id);
- /**
- * 批量删除阿里云音色列
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteCcTtsAliyunByIds(String[] ids);
- }
|