package com.dy.pipIrrGlobal.daoRm; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoRm.RmCommandHistory; import org.apache.ibatis.annotations.Mapper; /** * @author ZhuBaoMin * @date 2024-05-22 14:29 * @LastEditTime 2024-05-22 14:29 * @Description */ @Mapper public interface RmCommandHistoryMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int insert(RmCommandHistory record); int insertSelective(RmCommandHistory record); RmCommandHistory selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(RmCommandHistory record); int updateByPrimaryKey(RmCommandHistory record); }