New file |
| | |
| | | package com.dy.pipIrrGlobal.daoPr; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dy.pipIrrGlobal.pojoPr.PrControllerTramp; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Author liurunyu |
| | | * @Date 2024/1/15 15:27 |
| | | * @LastEditTime 2024/1/15 15:27 |
| | | * @Description |
| | | */ |
| | | @Mapper |
| | | public interface PrControllerTrampMapper extends BaseMapper<PrControllerTramp> { |
| | | /** |
| | | * delete by primary key |
| | | * @param id primaryKey |
| | | * @return deleteCount |
| | | */ |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | /** |
| | | * 清空流浪控制器表 |
| | | * @return |
| | | */ |
| | | int emptyTrampController(); |
| | | |
| | | /** |
| | | * insert record to table |
| | | * @param record the record |
| | | * @return insert count |
| | | */ |
| | | int insert(PrControllerTramp record); |
| | | |
| | | /** |
| | | * insert record to table selective |
| | | * @param record the record |
| | | * @return insert count |
| | | */ |
| | | int insertSelective(PrControllerTramp record); |
| | | |
| | | /** |
| | | * select by primary key |
| | | * @param id primary key |
| | | * @return object by primary key |
| | | */ |
| | | PrControllerTramp selectByPrimaryKey(Long id); |
| | | |
| | | /** |
| | | * select by RtuAddr |
| | | * @param rutAddr 控制器地址 |
| | | * @return object by 控制器地址 |
| | | */ |
| | | List<PrControllerTramp> getPrControllerTrampByRtuAddr(String rutAddr); |
| | | |
| | | /** |
| | | * update record selective |
| | | * @param record the updated record |
| | | * @return update count |
| | | */ |
| | | int updateByPrimaryKeySelective(PrControllerTramp record); |
| | | |
| | | /** |
| | | * update record |
| | | * @param record the updated record |
| | | * @return update count |
| | | */ |
| | | int updateByPrimaryKey(PrControllerTramp record); |
| | | |
| | | /** |
| | | * 根据控制器编号获取流浪控制器地址 |
| | | * @param controllerId 流浪控制器编号 |
| | | * @return 记录数量 |
| | | */ |
| | | //String getTrampRtuAddr(@Param("controllerId") Long controllerId); |
| | | |
| | | /** |
| | | * 根据控制器编号获取流浪控制器信息 |
| | | * @param controllerId |
| | | * @return |
| | | */ |
| | | PrControllerTramp getTrampControllerInfo(@Param("controllerId") Long controllerId); |
| | | |
| | | /** |
| | | * 条件查询流浪控制器信息 |
| | | * @param |
| | | * @return |
| | | */ |
| | | List<PrControllerTramp> getTrampControllers(Map<?, ?> params); |
| | | /** |
| | | * 条件查询流浪控制器数量 |
| | | * @param |
| | | * @return recordCount |
| | | */ |
| | | Long getTrampControllersCount(Map<?, ?> params); |
| | | } |