TBasePointMapper.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.ruoyi.project.base.mapper;
  2. import java.util.List;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import com.ruoyi.project.base.domain.TBasePoint;
  5. import org.apache.ibatis.annotations.Param;
  6. /**
  7. * 密封点Mapper接口
  8. *
  9. * @author ruoyi
  10. * @date 2022-11-11
  11. */
  12. public interface TBasePointMapper extends BaseMapper<TBasePoint>
  13. {
  14. /**
  15. * 查询密封点
  16. *
  17. * @param id 密封点主键
  18. * @return 密封点
  19. */
  20. public TBasePoint selectTBasePointById(Long id);
  21. public TBasePoint selectTBasePointByGroupCodeAndExtendCode(TBasePoint tBasePoint);
  22. /**
  23. * 查询密封点列表
  24. *
  25. * @param tBasePoint 密封点
  26. * @return 密封点集合
  27. */
  28. public List<TBasePoint> selectTBasePointList(TBasePoint tBasePoint);
  29. /**
  30. * 新增密封点
  31. *
  32. * @param tBasePoint 密封点
  33. * @return 结果
  34. */
  35. public int insertTBasePoint(TBasePoint tBasePoint);
  36. /**
  37. * 修改密封点
  38. *
  39. * @param tBasePoint 密封点
  40. * @return 结果
  41. */
  42. public int updateTBasePoint(TBasePoint tBasePoint);
  43. /**
  44. * 删除密封点
  45. *
  46. * @param id 密封点主键
  47. * @return 结果
  48. */
  49. public int deleteTBasePointById(Long id);
  50. /**
  51. * 批量删除密封点
  52. *
  53. * @param ids 需要删除的数据主键集合
  54. * @return 结果
  55. */
  56. public int deleteTBasePointByIds(Long[] ids);
  57. }