package com.dy.pipIrrGlobal.daoRm;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dy.pipIrrGlobal.pojoRm.RmOpenCloseValveLast;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2024-06-17 11:28
|
* @LastEditTime 2024-06-17 11:28
|
* @Description
|
*/
|
|
@Mapper
|
public interface RmOpenCloseValveLastMapper extends BaseMapper<RmOpenCloseValveLast> {
|
int deleteByPrimaryKey(Long id);
|
|
int insert(RmOpenCloseValveLast record);
|
|
int insertSelective(RmOpenCloseValveLast record);
|
|
RmOpenCloseValveLast selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(RmOpenCloseValveLast record);
|
|
int updateByPrimaryKey(RmOpenCloseValveLast record);
|
|
/**
|
* select by rtuAddr
|
*
|
* @param rtuAddr rtuAddr
|
* @return object by rtuAddr
|
*/
|
//List<RmOpenCloseValveLast> selectByRtuAddr(String rtuAddr);
|
}
|