ITPssrCleaningService.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ruoyi.project.pssr.service;
  2. import java.util.List;
  3. import com.ruoyi.project.pssr.domain.TPssrCleaning;
  4. /**
  5. * 设备清洁Service接口
  6. *
  7. * @author ssy
  8. * @date 2024-09-18
  9. */
  10. public interface ITPssrCleaningService
  11. {
  12. /**
  13. * 查询设备清洁
  14. *
  15. * @param id 设备清洁ID
  16. * @return 设备清洁
  17. */
  18. public TPssrCleaning selectTPssrCleaningById(Long id);
  19. /**
  20. * 查询设备清洁列表
  21. *
  22. * @param tPssrCleaning 设备清洁
  23. * @return 设备清洁集合
  24. */
  25. public List<TPssrCleaning> selectTPssrCleaningList(TPssrCleaning tPssrCleaning);
  26. /**
  27. * 新增设备清洁
  28. *
  29. * @param tPssrCleaning 设备清洁
  30. * @return 结果
  31. */
  32. public int insertTPssrCleaning(TPssrCleaning tPssrCleaning);
  33. /**
  34. * 修改设备清洁
  35. *
  36. * @param tPssrCleaning 设备清洁
  37. * @return 结果
  38. */
  39. public int updateTPssrCleaning(TPssrCleaning tPssrCleaning);
  40. /**
  41. * 批量删除设备清洁
  42. *
  43. * @param ids 需要删除的设备清洁ID
  44. * @return 结果
  45. */
  46. public int deleteTPssrCleaningByIds(Long[] ids);
  47. /**
  48. * 删除设备清洁信息
  49. *
  50. * @param id 设备清洁ID
  51. * @return 结果
  52. */
  53. public int deleteTPssrCleaningById(Long id);
  54. }