package com.dy.pipIrrGlobal.daoRm; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoRm.RmOpenCloseValveHistory; import org.apache.ibatis.annotations.Mapper; /** * @author ZhuBaoMin * @date 2024-06-17 11:27 * @LastEditTime 2024-06-17 11:27 * @Description */ @Mapper public interface RmOpenCloseValveHistoryMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int insert(RmOpenCloseValveHistory record); int insertSelective(RmOpenCloseValveHistory record); RmOpenCloseValveHistory selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(RmOpenCloseValveHistory record); int updateByPrimaryKey(RmOpenCloseValveHistory record); }