TestIscsMapper.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.ktg.iscs.mapper;
  2. import com.ktg.common.mapper.BaseMapperX;
  3. import com.ktg.iscs.domain.TestIscs;
  4. import java.util.List;
  5. /**
  6. * 测试用Mapper接口
  7. *
  8. * @author yinjinlu
  9. * @date 2024-10-14
  10. */
  11. public interface TestIscsMapper extends BaseMapperX<TestIscs>
  12. {
  13. /**
  14. * 查询测试用
  15. *
  16. * @param id 测试用主键
  17. * @return 测试用
  18. */
  19. TestIscs selectTestIscsById(Long id);
  20. /**
  21. * 查询测试用列表
  22. *
  23. * @param testIscs 测试用
  24. * @return 测试用集合
  25. */
  26. List<TestIscs> selectTestIscsList(TestIscs testIscs);
  27. /**
  28. * 新增测试用
  29. *
  30. * @param testIscs 测试用
  31. * @return 结果
  32. */
  33. int insertTestIscs(TestIscs testIscs);
  34. /**
  35. * 修改测试用
  36. *
  37. * @param testIscs 测试用
  38. * @return 结果
  39. */
  40. int updateTestIscs(TestIscs testIscs);
  41. /**
  42. * 删除测试用
  43. *
  44. * @param id 测试用主键
  45. * @return 结果
  46. */
  47. int deleteTestIscsById(Long id);
  48. /**
  49. * 批量删除测试用
  50. *
  51. * @param ids 需要删除的数据主键集合
  52. * @return 结果
  53. */
  54. int deleteTestIscsByIds(Long[] ids);
  55. }