pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoRm/RmOpenCloseValveLastMapper.java
@@ -1,6 +1,8 @@
package com.dy.pipIrrGlobal.daoRm;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoRm.RmOpenCloseValveLast;
import com.dy.pipIrrGlobal.pojoRm.RmWorkReportHistory;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
@@ -11,7 +13,7 @@
 * @Description
 */
@Mapper
public interface RmOpenCloseValveLastMapper {
public interface RmOpenCloseValveLastMapper extends BaseMapper<RmOpenCloseValveLast> {
    /**
     * delete by primary key
     *
@@ -63,8 +65,8 @@
    /**
     * select by rtuAddr
     *
     * @param rtuAddr rtuAddr
     * @param intakeId intakeId
     * @return object by rtuAddr
     */
    List<RmOpenCloseValveLast> selectByRtuAddr(String rtuAddr);
    List<RmOpenCloseValveLast> selectByIntakeId(Long intakeId);
}