123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- package com.ruoyi.project.base.mapper;
- import java.util.List;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.ruoyi.project.base.domain.TBasePoint;
- import org.apache.ibatis.annotations.Param;
- /**
- * 密封点Mapper接口
- *
- * @author ruoyi
- * @date 2022-11-11
- */
- public interface TBasePointMapper extends BaseMapper<TBasePoint>
- {
- /**
- * 查询密封点
- *
- * @param id 密封点主键
- * @return 密封点
- */
- public TBasePoint selectTBasePointById(Long id);
- public TBasePoint selectTBasePointByGroupCodeAndExtendCode(TBasePoint tBasePoint);
- /**
- * 查询密封点列表
- *
- * @param tBasePoint 密封点
- * @return 密封点集合
- */
- public List<TBasePoint> selectTBasePointList(TBasePoint tBasePoint);
- /**
- * 新增密封点
- *
- * @param tBasePoint 密封点
- * @return 结果
- */
- public int insertTBasePoint(TBasePoint tBasePoint);
- /**
- * 修改密封点
- *
- * @param tBasePoint 密封点
- * @return 结果
- */
- public int updateTBasePoint(TBasePoint tBasePoint);
- public int updateTBasePointByPointIds(TBasePoint tBasePoint);
- /**
- * 删除密封点
- *
- * @param id 密封点主键
- * @return 结果
- */
- public int deleteTBasePointById(Long id);
- /**
- * 批量删除密封点
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteTBasePointByIds(Long[] ids);
- }
|