package com.ruoyi.base.mapper; import java.util.List; import com.ruoyi.base.domain.RobotOpsScreenThemeConfig; /** * 展示主题配置Mapper接口 * * @author ruoyi * @date 2026-05-14 */ public interface RobotOpsScreenThemeConfigMapper { /** * 查询展示主题配置 * * @param id 展示主题配置主键 * @return 展示主题配置 */ public RobotOpsScreenThemeConfig selectRobotOpsScreenThemeConfigById(Long id); /** * 根据配置标识查询展示主题配置 * * @param configKey 配置标识 * @return 展示主题配置 */ public RobotOpsScreenThemeConfig selectRobotOpsScreenThemeConfigByConfigKey(String configKey); /** * 查询展示主题配置列表 * * @param robotOpsScreenThemeConfig 展示主题配置 * @return 展示主题配置集合 */ public List selectRobotOpsScreenThemeConfigList(RobotOpsScreenThemeConfig robotOpsScreenThemeConfig); /** * 新增展示主题配置 * * @param robotOpsScreenThemeConfig 展示主题配置 * @return 结果 */ public int insertRobotOpsScreenThemeConfig(RobotOpsScreenThemeConfig robotOpsScreenThemeConfig); /** * 修改展示主题配置 * * @param robotOpsScreenThemeConfig 展示主题配置 * @return 结果 */ public int updateRobotOpsScreenThemeConfig(RobotOpsScreenThemeConfig robotOpsScreenThemeConfig); /** * 删除展示主题配置 * * @param id 展示主题配置主键 * @return 结果 */ public int deleteRobotOpsScreenThemeConfigById(Long id); /** * 批量删除展示主题配置 * * @param ids 需要删除的数据主键集合 * @return 结果 */ public int deleteRobotOpsScreenThemeConfigByIds(Long[] ids); }