package com.dy.pipIrrGlobal.daoRm;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dy.pipIrrGlobal.pojoRm.RmOpenCloseLast;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2024-06-20 10:34
|
* @LastEditTime 2024-06-20 10:34
|
* @Description
|
*/
|
|
@Mapper
|
public interface RmOpenCloseLastMapper extends BaseMapper<RmOpenCloseLast> {
|
int deleteByPrimaryKey(Long id);
|
|
int insert(RmOpenCloseLast record);
|
|
int insertSelective(RmOpenCloseLast record);
|
|
RmOpenCloseLast selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(RmOpenCloseLast record);
|
|
int updateByPrimaryKey(RmOpenCloseLast record);
|
|
/**
|
* 根据阀控器地址获取开关阀上报最新数据
|
* @param rtuAddr
|
* @return
|
*/
|
List<RmOpenCloseLast> getRmOpenCloseReportLast(String rtuAddr);
|
}
|