猫妈狗爸伴宠师小程序后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.5 KiB

1 year ago
  1. package com.ruoyi.catdog.mapper;
  2. import java.util.List;
  3. import com.ruoyi.catdog.domain.Indexconfig;
  4. /**
  5. * 主页内容配置Mapper接口
  6. *
  7. * @author ruoyi
  8. * @date 2025-03-02
  9. */
  10. public interface IndexconfigMapper
  11. {
  12. /**
  13. * 查询主页内容配置
  14. *
  15. * @param topCarouselImage 主页内容配置主键
  16. * @return 主页内容配置
  17. */
  18. public Indexconfig selectIndexconfigByTopCarouselImage(String topCarouselImage);
  19. /**
  20. * 查询主页内容配置列表
  21. *
  22. * @param indexconfig 主页内容配置
  23. * @return 主页内容配置集合
  24. */
  25. public List<Indexconfig> selectIndexconfigList(Indexconfig indexconfig);
  26. /**
  27. * 新增主页内容配置
  28. *
  29. * @param indexconfig 主页内容配置
  30. * @return 结果
  31. */
  32. public int insertIndexconfig(Indexconfig indexconfig);
  33. /**
  34. * 修改主页内容配置
  35. *
  36. * @param indexconfig 主页内容配置
  37. * @return 结果
  38. */
  39. public int updateIndexconfig(Indexconfig indexconfig);
  40. /**
  41. * 删除主页内容配置
  42. *
  43. * @param topCarouselImage 主页内容配置主键
  44. * @return 结果
  45. */
  46. public int deleteIndexconfigByTopCarouselImage(String topCarouselImage);
  47. /**
  48. * 批量删除主页内容配置
  49. *
  50. * @param topCarouselImages 需要删除的数据主键集合
  51. * @return 结果
  52. */
  53. public int deleteIndexconfigByTopCarouselImages(String[] topCarouselImages);
  54. }