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 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); }