12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.ruoyi.project.asset.mapper;
- import java.util.List;
- import com.ruoyi.project.asset.domain.TLeakagePointsPatrol;
- /**
- * 漏点巡检Mapper接口
- *
- * @author ruoyi
- * @date 2024-04-01
- */
- public interface TLeakagePointsPatrolMapper
- {
- /**
- * 查询漏点巡检
- *
- * @param id 漏点巡检主键
- * @return 漏点巡检
- */
- public TLeakagePointsPatrol selectTLeakagePointsPatrolById(Long id);
- /**
- * 查询漏点巡检列表
- *
- * @param tLeakagePointsPatrol 漏点巡检
- * @return 漏点巡检集合
- */
- public List<TLeakagePointsPatrol> selectTLeakagePointsPatrolList(TLeakagePointsPatrol tLeakagePointsPatrol);
- /**
- * 新增漏点巡检
- *
- * @param tLeakagePointsPatrol 漏点巡检
- * @return 结果
- */
- public int insertTLeakagePointsPatrol(TLeakagePointsPatrol tLeakagePointsPatrol);
- /**
- * 修改漏点巡检
- *
- * @param tLeakagePointsPatrol 漏点巡检
- * @return 结果
- */
- public int updateTLeakagePointsPatrol(TLeakagePointsPatrol tLeakagePointsPatrol);
- /**
- * 删除漏点巡检
- *
- * @param id 漏点巡检主键
- * @return 结果
- */
- public int deleteTLeakagePointsPatrolById(Long id);
- /**
- * 批量删除漏点巡检
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteTLeakagePointsPatrolByIds(Long[] ids);
- }
|