zhubaomin
2025-04-07 1a2b07f01ba4616fd9e894dddf474b56d020158c
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoRm/RmIrrigateProfileMapper.java
New file
@@ -0,0 +1,37 @@
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<RmIrrigateProfile> {
    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<VoIrrigaterProfile> getIrrPro(Integer type);
}