ITIntactYsjService.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.ruoyi.project.intact.service;
  2. import java.util.List;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import com.ruoyi.project.intact.domain.TIntactPump;
  5. import com.ruoyi.project.intact.domain.TIntactYsj;
  6. import com.ruoyi.project.sems.domain.TSpecdevYlrq;
  7. /**
  8. * 设备完整性压缩机台账Service接口
  9. *
  10. * @author ruoyi
  11. * @date 2022-06-21
  12. */
  13. public interface ITIntactYsjService extends IService<TIntactYsj>
  14. {
  15. /**
  16. * 查询设备完整性压缩机台账
  17. *
  18. * @param id 设备完整性压缩机台账ID
  19. * @return 设备完整性压缩机台账
  20. */
  21. public TIntactYsj selectTIntactYsjById(Long id);
  22. /**
  23. * 查询设备完整性压缩机台账列表
  24. *
  25. * @param tIntactYsj 设备完整性压缩机台账
  26. * @return 设备完整性压缩机台账集合
  27. */
  28. public List<TIntactYsj> selectTIntactYsjList(TIntactYsj tIntactYsj);
  29. /**
  30. * 新增设备完整性压缩机台账
  31. *
  32. * @param tIntactYsj 设备完整性压缩机台账
  33. * @return 结果
  34. */
  35. public int insertTIntactYsj(TIntactYsj tIntactYsj);
  36. /**
  37. * 修改设备完整性压缩机台账
  38. *
  39. * @param tIntactYsj 设备完整性压缩机台账
  40. * @return 结果
  41. */
  42. public int updateTIntactYsj(TIntactYsj tIntactYsj);
  43. /**
  44. * 批量删除设备完整性压缩机台账
  45. *
  46. * @param ids 需要删除的设备完整性压缩机台账ID
  47. * @return 结果
  48. */
  49. public int deleteTIntactYsjByIds(Long[] ids);
  50. /**
  51. * 删除设备完整性压缩机台账信息
  52. *
  53. * @param id 设备完整性压缩机台账ID
  54. * @return 结果
  55. */
  56. public int deleteTIntactYsjById(Long id);
  57. }