| package com.dy.pipIrrGlobal.daoRm; | 
|   | 
| import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
| import com.dy.pipIrrGlobal.pojoRm.RmCommandOpen; | 
| import org.apache.ibatis.annotations.Mapper; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * @Author: liurunyu | 
|  * @Date: 2025/6/27 10:31 | 
|  * @Description | 
|  */ | 
| @Mapper | 
| public interface RmCommandOpenMapper extends BaseMapper<RmCommandOpen> { | 
|   | 
|     int deleteByPrimaryKey(Long id); | 
|   | 
|     int insert(RmCommandOpen record); | 
|   | 
|     int insertSelective(RmCommandOpen record); | 
|   | 
|     RmCommandOpen selectByPrimaryKey(Long id); | 
|   | 
|     List<RmCommandOpen> selectByIntakeId(Long intakeId); | 
|   | 
|     int updateByPrimaryKeySelective(RmCommandOpen record); | 
|   | 
|     int updateByPrimaryKey(RmCommandOpen record); | 
|   | 
| } |