TPssrInstrumentTestMapper.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package com.ruoyi.project.pssr.mapper;
  2. import com.ruoyi.framework.aspectj.lang.annotation.DataScope;
  3. import com.ruoyi.project.pssr.domain.TPssrInstrumentTest;
  4. import java.util.List;
  5. /**
  6. * 仪联锁测试Mapper接口
  7. *
  8. * @author ssy
  9. * @date 2024-09-18
  10. */
  11. public interface TPssrInstrumentTestMapper
  12. {
  13. /**
  14. * 查询仪联锁测试
  15. *
  16. * @param id 仪联锁测试ID
  17. * @return 仪联锁测试
  18. */
  19. public TPssrInstrumentTest selectTPssrInstrumentTestById(Long id);
  20. public int selectNoConfirmCount(Long subId);
  21. /**
  22. * 查询仪联锁测试列表
  23. *
  24. * @param tPssrInstrumentTest 仪联锁测试
  25. * @return 仪联锁测试集合
  26. */
  27. public List<TPssrInstrumentTest> selectTPssrInstrumentTestList(TPssrInstrumentTest tPssrInstrumentTest);
  28. /**
  29. * 新增仪联锁测试
  30. *
  31. * @param tPssrInstrumentTest 仪联锁测试
  32. * @return 结果
  33. */
  34. public int insertTPssrInstrumentTest(TPssrInstrumentTest tPssrInstrumentTest);
  35. /**
  36. * 修改仪联锁测试
  37. *
  38. * @param tPssrInstrumentTest 仪联锁测试
  39. * @return 结果
  40. */
  41. public int updateTPssrInstrumentTest(TPssrInstrumentTest tPssrInstrumentTest);
  42. public int updateTPssrInstrumentTestByIds(TPssrInstrumentTest tPssrInstrumentTest);
  43. /**
  44. * 删除仪联锁测试
  45. *
  46. * @param id 仪联锁测试ID
  47. * @return 结果
  48. */
  49. public int deleteTPssrInstrumentTestById(Long id);
  50. /**
  51. * 批量删除仪联锁测试
  52. *
  53. * @param ids 需要删除的数据ID
  54. * @return 结果
  55. */
  56. public int deleteTPssrInstrumentTestByIds(Long[] ids);
  57. }