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;
|
|
/**
|
* @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);
|
|
/**
|
* 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);
|
}
|