CollectionSystemMapper.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ruoyi.system.mapper;
  2. import java.util.List;
  3. import com.ruoyi.system.domain.CollectionSystem;
  4. /**
  5. * 【请填写功能名称】Mapper接口
  6. *
  7. * @author ruoyi
  8. * @date 2023-02-14
  9. */
  10. public interface CollectionSystemMapper
  11. {
  12. /**
  13. * 查询【请填写功能名称】
  14. *
  15. * @param id 【请填写功能名称】主键
  16. * @return 【请填写功能名称】
  17. */
  18. public CollectionSystem selectCollectionSystemById(Long id);
  19. /**
  20. * 查询【请填写功能名称】列表
  21. *
  22. * @param collectionSystem 【请填写功能名称】
  23. * @return 【请填写功能名称】集合
  24. */
  25. public List<CollectionSystem> selectCollectionSystemList(CollectionSystem collectionSystem);
  26. /**
  27. * 新增【请填写功能名称】
  28. *
  29. * @param collectionSystem 【请填写功能名称】
  30. * @return 结果
  31. */
  32. public int insertCollectionSystem(CollectionSystem collectionSystem);
  33. /**
  34. * 修改【请填写功能名称】
  35. *
  36. * @param collectionSystem 【请填写功能名称】
  37. * @return 结果
  38. */
  39. public int updateCollectionSystem(CollectionSystem collectionSystem);
  40. /**
  41. * 删除【请填写功能名称】
  42. *
  43. * @param id 【请填写功能名称】主键
  44. * @return 结果
  45. */
  46. public int deleteCollectionSystemById(Long id);
  47. /**
  48. * 批量删除【请填写功能名称】
  49. *
  50. * @param ids 需要删除的数据主键集合
  51. * @return 结果
  52. */
  53. public int deleteCollectionSystemByIds(Long[] ids);
  54. }