package com.dy.pipIrrGlobal.daoRm; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoRm.RmIrrigateProfile; import com.dy.pipIrrGlobal.voRm.VoIrrigaterProfile; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * @author ZhuBaoMin * @date 2024-08-23 15:17 * @LastEditTime 2024-08-23 15:17 * @Description */ @Mapper public interface RmIrrigateProfileMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int insert(RmIrrigateProfile record); int insertSelective(RmIrrigateProfile record); RmIrrigateProfile selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(RmIrrigateProfile record); int updateByPrimaryKey(RmIrrigateProfile record); /** * 根据配置类型获取配置值 * @param type * @return */ List getIrrPro(Integer type); }