TBasePointMapper.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. public int updateTBasePointByPointIds(TBasePoint tBasePoint);
  44. /**
  45. * 删除密封点
  46. *
  47. * @param id 密封点主键
  48. * @return 结果
  49. */
  50. public int deleteTBasePointById(Long id);
  51. /**
  52. * 批量删除密封点
  53. *
  54. * @param ids 需要删除的数据主键集合
  55. * @return 结果
  56. */
  57. public int deleteTBasePointByIds(Long[] ids);
  58. }