RobotOpsScreenThemeConfigMapper.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package com.ruoyi.base.mapper;
  2. import java.util.List;
  3. import com.ruoyi.base.domain.RobotOpsScreenThemeConfig;
  4. /**
  5. * 展示主题配置Mapper接口
  6. *
  7. * @author ruoyi
  8. * @date 2026-05-14
  9. */
  10. public interface RobotOpsScreenThemeConfigMapper
  11. {
  12. /**
  13. * 查询展示主题配置
  14. *
  15. * @param id 展示主题配置主键
  16. * @return 展示主题配置
  17. */
  18. public RobotOpsScreenThemeConfig selectRobotOpsScreenThemeConfigById(Long id);
  19. /**
  20. * 根据配置标识查询展示主题配置
  21. *
  22. * @param configKey 配置标识
  23. * @return 展示主题配置
  24. */
  25. public RobotOpsScreenThemeConfig selectRobotOpsScreenThemeConfigByConfigKey(String configKey);
  26. /**
  27. * 查询展示主题配置列表
  28. *
  29. * @param robotOpsScreenThemeConfig 展示主题配置
  30. * @return 展示主题配置集合
  31. */
  32. public List<RobotOpsScreenThemeConfig> selectRobotOpsScreenThemeConfigList(RobotOpsScreenThemeConfig robotOpsScreenThemeConfig);
  33. /**
  34. * 新增展示主题配置
  35. *
  36. * @param robotOpsScreenThemeConfig 展示主题配置
  37. * @return 结果
  38. */
  39. public int insertRobotOpsScreenThemeConfig(RobotOpsScreenThemeConfig robotOpsScreenThemeConfig);
  40. /**
  41. * 修改展示主题配置
  42. *
  43. * @param robotOpsScreenThemeConfig 展示主题配置
  44. * @return 结果
  45. */
  46. public int updateRobotOpsScreenThemeConfig(RobotOpsScreenThemeConfig robotOpsScreenThemeConfig);
  47. /**
  48. * 删除展示主题配置
  49. *
  50. * @param id 展示主题配置主键
  51. * @return 结果
  52. */
  53. public int deleteRobotOpsScreenThemeConfigById(Long id);
  54. /**
  55. * 批量删除展示主题配置
  56. *
  57. * @param ids 需要删除的数据主键集合
  58. * @return 结果
  59. */
  60. public int deleteRobotOpsScreenThemeConfigByIds(Long[] ids);
  61. }