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